Skip to content

Commit

Permalink
fix var names
Browse files Browse the repository at this point in the history
  • Loading branch information
toloudis committed Dec 30, 2024
1 parent 4681df4 commit a63fb06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renderlib/graphics/glsl/shaders.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ struct ShaderEntry
};

static std::unordered_map<std::string, ShaderEntry> shader_src = {
{ "basicVolumeFrag", { basicVolume_frag_shader, GL_FRAGMENT_SHADER } },
{ "pathTraceVolumeFrag", { pathTraceVolume_frag_shader, GL_FRAGMENT_SHADER } }
{ "basicVolumeFrag", { basicVolume_frag_src, GL_FRAGMENT_SHADER } },
{ "pathTraceVolumeFrag", { pathTraceVolume_frag_src, GL_FRAGMENT_SHADER } }
};
static std::unordered_map<std::string, GLShader*> shaders;

Expand Down

0 comments on commit a63fb06

Please sign in to comment.