mame/3rdparty/bgfx/tools/shaderc/shaderc_pssl.cpp
Бранимир Караџић 1a6a018fc3 Update bgfx to latest
2021-08-10 20:28:56 +02:00

23 lines
487 B
C++

/*
* Copyright 2011-2021 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include "shaderc.h"
namespace bgfx
{
bool compilePSSLShader(const Options& _options, uint32_t _version, const std::string& _code, bx::WriterI* _writer)
{
BX_UNUSED(_options, _version, _code, _writer);
bx::printf("PSSL compiler is not supported.\n");
return false;
}
const char* getPsslPreamble()
{
return "";
}
} // namespace bgfx