Revision cbe245f86ba6cbf5239f36bd6a0f55d82229d19b authored by Yong He on 29 September 2022, 20:14:10 UTC, committed by GitHub on 29 September 2022, 20:14:10 UTC
* GFX: support D3D12EnableExperimentalFeatures.

* Fix.

Co-authored-by: Yong He <yhe@nvidia.com>
1 parent 9296405
Raw File
slangc-tool.h
// slangc-tool.h

#ifndef SLANGC_TOOL_H_INCLUDED
#define SLANGC_TOOL_H_INCLUDED

#include "../../source/core/slang-std-writers.h"

/* The slangc 'tool' interface, such that slangc like functionality is available directly without invoking slangc command line tool, or
need for a dll/shared library. */
struct SlangCTool
{
    static SlangResult innerMain(Slang::StdWriters* stdWriters, SlangSession* session, int argc, const char*const* argv);
};

#endif // SLANGC_TOOL_H_INCLUDED
back to top