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
6
namespace
Grindstone {
7
class
ShaderReflectionLoader
{
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
}
Grindstone::ShaderReflectionLoader
Definition
ShaderReflectionLoader.hpp:7
Grindstone::ShaderReflectionData
Definition
ShaderReflectionData.hpp:7
sources
code
EngineCore
Assets
Shaders
ShaderReflectionLoader.hpp
Generated by
1.12.0