Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
ShaderReflectionLoader.hpp
1#pragma once
2
3#include "rapidjson/document.h"
4#include "ShaderReflectionData.hpp"
5
6namespace Grindstone {
8 public:
9 ShaderReflectionLoader(const char* path, ShaderReflectionData& data);
10 private:
11 void Process();
12 void ProcessMetadata();
13 void ProcessUniformBuffers();
14 void ProcessTextures();
15 private:
16 rapidjson::Document document;
17 ShaderReflectionData& outData;
18 };
19
20 void LoadShaderReflection(const char* path, ShaderReflectionData& reflectionData);
21}
Definition ShaderReflectionLoader.hpp:7
Definition ShaderReflectionData.hpp:7