/* * Copyright 2011-2020 Branimir Karadzic. All rights reserved. * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause */ #ifndef SHADERC_H_HEADER_GUARD #define SHADERC_H_HEADER_GUARD namespace bgfx { extern bool g_verbose; } #define _BX_TRACE(_format, ...) \ BX_MACRO_BLOCK_BEGIN \ if (bgfx::g_verbose) \ { \ fprintf(stdout, BX_FILE_LINE_LITERAL "" _format "\n", ##__VA_ARGS__); \ } \ BX_MACRO_BLOCK_END #define _BX_WARN(_condition, _format, ...) \ BX_MACRO_BLOCK_BEGIN \ if (!(_condition) ) \ { \ BX_TRACE("WARN " _format, ##__VA_ARGS__); \ } \ BX_MACRO_BLOCK_END #define _BX_ASSERT(_condition, _format, ...) \ BX_MACRO_BLOCK_BEGIN \ if (!(_condition) ) \ { \ BX_TRACE("CHECK " _format, ##__VA_ARGS__); \ bx::debugBreak(); \ } \ BX_MACRO_BLOCK_END #define BX_TRACE _BX_TRACE #define BX_WARN _BX_WARN #define BX_ASSERT _BX_ASSERT #ifndef SHADERC_CONFIG_HLSL # define SHADERC_CONFIG_HLSL BX_PLATFORM_WINDOWS #endif // SHADERC_CONFIG_HLSL #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../../src/vertexlayout.h" namespace bgfx { extern bool g_verbose; bx::StringView nextWord(bx::StringView& _parse); constexpr uint8_t kUniformFragmentBit = 0x10; constexpr uint8_t kUniformSamplerBit = 0x20; constexpr uint8_t kUniformReadOnlyBit = 0x40; constexpr uint8_t kUniformCompareBit = 0x80; constexpr uint8_t kUniformMask = 0 | kUniformFragmentBit | kUniformSamplerBit | kUniformReadOnlyBit | kUniformCompareBit ; const char* getUniformTypeName(UniformType::Enum _enum); UniformType::Enum nameToUniformTypeEnum(const char* _name); struct Uniform { Uniform() : type(UniformType::Count) , num(0) , regIndex(0) , regCount(0) , texComponent(0) , texDimension(0) { } std::string name; UniformType::Enum type; uint8_t num; uint16_t regIndex; uint16_t regCount; uint8_t texComponent; uint8_t texDimension; }; struct Options { Options(); void dump(); char shaderType; std::string platform; std::string profile; std::string inputFilePath; std::string outputFilePath; std::vector includeDirs; std::vector defines; std::vector dependencies; bool disasm; bool raw; bool preprocessOnly; bool depends; bool debugInformation; bool avoidFlowControl; bool noPreshader; bool partialPrecision; bool preferFlowControl; bool backwardsCompatibility; bool warningsAreErrors; bool keepIntermediate; bool optimize; uint32_t optimizationLevel; }; typedef std::vector UniformArray; void printCode(const char* _code, int32_t _line = 0, int32_t _start = 0, int32_t _end = INT32_MAX, int32_t _column = -1); void strReplace(char* _str, const char* _find, const char* _replace); int32_t writef(bx::WriterI* _writer, const char* _format, ...); void writeFile(const char* _filePath, const void* _data, int32_t _size); bool compileGLSLShader(const Options& _options, uint32_t _version, const std::string& _code, bx::WriterI* _writer); bool compileHLSLShader(const Options& _options, uint32_t _version, const std::string& _code, bx::WriterI* _writer); bool compileMetalShader(const Options& _options, 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); bool compileSPIRVShader(const Options& _options, uint32_t _version, const std::string& _code, bx::WriterI* _writer); const char* getPsslPreamble(); } // namespace bgfx #endif // SHADERC_H_HEADER_GUARD