bgfx/tools/shaderc/shaderc_pssl.cpp

23 lines
492 B
C++
Raw Normal View History

2016-10-01 04:16:04 +03:00
/*
2020-01-15 08:37:06 +03:00
* Copyright 2011-2020 Branimir Karadzic. All rights reserved.
2016-10-01 04:16:04 +03:00
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include "shaderc.h"
namespace bgfx
{
2017-11-24 21:01:13 +03:00
bool compilePSSLShader(const Options& _options, uint32_t _version, const std::string& _code, bx::WriterI* _writer)
2016-10-01 04:16:04 +03:00
{
2017-11-24 21:01:13 +03:00
BX_UNUSED(_options, _version, _code, _writer);
2016-10-01 04:16:04 +03:00
fprintf(stderr, "PSSL compiler is not supported.\n");
return false;
}
const char* getPsslPreamble()
{
return "";
}
2016-10-01 04:16:04 +03:00
} // namespace bgfx