17 enum class ShaderType {
30 std::vector<ShaderType> shaderPasses;
36 ) : name(name), binding(binding), descriptorSet(descriptorSet) {}
51 ) : name(name), type(type), offset(offset), memberSize(memberSize) {}
58 std::vector<ShaderType> shaderPasses;
59 std::vector<Member> members;
66 ) : name(name), binding(binding), descriptorSet(descriptorSet), bufferSize(bufferSize) {}
70 void WriteReflectionStruct(std::vector<UniformBuffer>& structs);
71 void WriteReflectionImage(std::vector<Texture>& resources);
72 void WriteReflectionDocument();
73 std::string ExtractField(
const char* fieldKey);
74 bool ExtractSubmodules();
75 bool ProcessSubmodule(ShaderType shaderType,
const char* extension,
const char* glslSource);
76 std::vector<uint32_t> ConvertToSpirv(ShaderType,
const char* extension,
const char* shaderModuleGlsl);
77 std::string ConvertToOpenglGlsl(
const char* extension, std::vector<uint32_t>&);
78 void ConvertToOpenglSpirv(ShaderType,
const char* extension,
const char* openglGlsl);
79 void ReflectResources(ShaderType shaderType, std::vector<uint32_t>&);
80 void OutputStringToFile(
const char* extension,
const char* content);
81 void OutputUint32ToFile(
const char* extension, std::vector<uint32_t>& content);
82 ShaderType GetShaderTypeFromString(std::string& str);
83 const char* GetShaderTypeExtension(ShaderType);
84 const char* GetShaderTypeAsString(ShaderType);
87 std::filesystem::path inputPath;
88 std::string baseOutputPath;
89 std::string shaderName;
90 std::string renderQueue;
91 std::string geometryRenderer;
92 std::string transparencyMode;
94 std::string sourceFileContents;
95 std::vector<ShaderType> shaderPasses;
96 std::vector<Texture> textures;
97 std::vector<Texture> samplers;
98 std::vector<UniformBuffer> uniformBuffers;
99 rapidjson::StringBuffer reflectionStringBuffer;
100 rapidjson::PrettyWriter<rapidjson::StringBuffer> reflectionWriter = rapidjson::PrettyWriter<rapidjson::StringBuffer>(reflectionStringBuffer);
Definition ShaderImporter.hpp:26