yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
f65d756bf
master
1// slangc-tool.h 2 3#ifndef SLANGC_TOOL_H_INCLUDED 4#define SLANGC_TOOL_H_INCLUDED 5 6#include "../../source/core/slang-std-writers.h" 7 8/* The slangc 'tool' interface, such that slangc like functionality is available directly without 9invoking slangc command line tool, or need for a dll/shared library. */ 10struct SlangCTool 11{ 12static SlangResult innerMain ( 13Slang ::StdWriters * stdWriters , 14SlangSession * session , 15int argc , 16const char * const * argv ); 17}; 18 19#endif // SLANGC_TOOL_H_INCLUDED