18 lines
446 B
C++
18 lines
446 B
C++
|
/*
|
||
|
* Copyright 2011-2016 Branimir Karadzic. All rights reserved.
|
||
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
||
|
*/
|
||
|
|
||
|
#include "shaderc.h"
|
||
|
|
||
|
namespace bgfx
|
||
|
{
|
||
|
bool compileSPIRVShader(bx::CommandLine& _cmdLine, uint32_t _version, const std::string& _code, bx::WriterI* _writer)
|
||
|
{
|
||
|
BX_UNUSED(_cmdLine, _version, _code, _writer);
|
||
|
fprintf(stderr, "SPIR-V compiler is not supported.\n");
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
} // namespace bgfx
|