diff options
Diffstat (limited to '3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp')
-rw-r--r-- | 3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp b/3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp new file mode 100644 index 00000000000..a6a6461dbd2 --- /dev/null +++ b/3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp @@ -0,0 +1,17 @@ +/* + * Copyright 2011-2016 Branimir Karadzic. All rights reserved. + * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause + */ + +#include "shaderc.h" + +namespace bgfx +{ + bool compilePSSLShader(bx::CommandLine& _cmdLine, uint32_t _version, const std::string& _code, bx::WriterI* _writer) + { + BX_UNUSED(_cmdLine, _version, _code, _writer); + fprintf(stderr, "PSSL compiler is not supported.\n"); + return false; + } + +} // namespace bgfx |