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