2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 01:11:22 +00:00
metaforce/Runtime/Graphics/Shaders/TShaderDecl.hpp
2017-12-05 17:26:15 -10:00

14 lines
499 B
C++

#if BOO_HAS_GL
static TShader<_CLS>::IDataBindingFactory* Initialize(boo::GLDataFactory::Context& ctx);
#endif
#if _WIN32
static TShader<_CLS>::IDataBindingFactory* Initialize(boo::ID3DDataFactory::Context& ctx);
#endif
#if BOO_HAS_METAL
static TShader<_CLS>::IDataBindingFactory* Initialize(boo::MetalDataFactory::Context& ctx);
#endif
#if BOO_HAS_VULKAN
static TShader<_CLS>::IDataBindingFactory* Initialize(boo::VulkanDataFactory::Context& ctx);
#endif
template <class F> static void Shutdown();