Skip to content
Snippets Groups Projects
Commit 8b49a71f authored by Mark Oliver Mints's avatar Mark Oliver Mints
Browse files

Merge branch '36-shader-program-reflection' of...

Merge branch '36-shader-program-reflection' of gitlab.uni-koblenz.de:vulkan2021/vkcv-framework into 33-pipeline-buffer-input
parents e6b51467 779aa495
No related branches found
No related tags found
1 merge request!29Resolve "Pipeline Buffer Input"
Pipeline #25198 passed
......@@ -57,7 +57,7 @@ namespace vkcv {
void reflectShader(ShaderStage shaderStage);
VertexLayout& getVertexLayout();
const VertexLayout &getVertexLayout() const;
private:
std::unordered_map<ShaderStage, Shader> m_Shaders;
......
......@@ -128,7 +128,7 @@ namespace vkcv {
m_VertexLayout = VertexLayout(inputVec);
}
VertexLayout& ShaderProgram::getVertexLayout(){
const VertexLayout& ShaderProgram::getVertexLayout() const{
return m_VertexLayout;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment