metaforce/Runtime/Graphics/Shaders/TShaderDecl.hpp

14 lines
498 B
C++
Raw Normal View History

2017-12-06 03:26:15 +00:00
#if BOO_HAS_GL
2017-01-29 03:58:16 +00:00
static TShader<_CLS>::IDataBindingFactory* Initialize(boo::GLDataFactory::Context& ctx);
2017-12-06 03:26:15 +00:00
#endif
#if _WIN32
static TShader<_CLS>::IDataBindingFactory* Initialize(boo::D3DDataFactory::Context& ctx);
#endif
#if BOO_HAS_METAL
2017-01-29 03:58:16 +00:00
static TShader<_CLS>::IDataBindingFactory* Initialize(boo::MetalDataFactory::Context& ctx);
#endif
#if BOO_HAS_VULKAN
2017-01-29 03:58:16 +00:00
static TShader<_CLS>::IDataBindingFactory* Initialize(boo::VulkanDataFactory::Context& ctx);
#endif
template <class F> static void Shutdown();