diff options
Diffstat (limited to '3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp')
-rw-r--r-- | 3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp b/3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp index fbfe4926786..87fe5584670 100644 --- a/3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp +++ b/3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp @@ -7,9 +7,9 @@ namespace bgfx { - bool compilePSSLShader(bx::CommandLine& _cmdLine, uint32_t _version, const std::string& _code, bx::WriterI* _writer) + bool compilePSSLShader(const Options& _options, uint32_t _version, const std::string& _code, bx::WriterI* _writer) { - BX_UNUSED(_cmdLine, _version, _code, _writer); + BX_UNUSED(_options, _version, _code, _writer); fprintf(stderr, "PSSL compiler is not supported.\n"); return false; } |