2016-10-01 04:16:04 +03:00
|
|
|
/*
|
2022-01-15 22:59:06 +03:00
|
|
|
* Copyright 2011-2022 Branimir Karadzic. All rights reserved.
|
|
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
2016-10-01 04:16:04 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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);
|
2020-07-15 20:42:23 +03:00
|
|
|
bx::printf("PSSL compiler is not supported.\n");
|
2016-10-01 04:16:04 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-17 04:15:16 +03:00
|
|
|
const char* getPsslPreamble()
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2016-10-01 04:16:04 +03:00
|
|
|
} // namespace bgfx
|