Skip to content

Commit

Permalink
Rename identity.glsl to identity-fs.glsl.
Browse files Browse the repository at this point in the history
  • Loading branch information
sesse committed Oct 2, 2012
1 parent 17c083a commit db1fbb7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gamma_compression_effect.cpp
Expand Up @@ -13,7 +13,7 @@ std::string GammaCompressionEffect::output_fragment_shader()
{
switch (destination_curve) {
case GAMMA_LINEAR:
return read_file("identity.glsl");
return read_file("identity-fs.glsl");
case GAMMA_sRGB:
return read_file("gamma_compression_effect_srgb.glsl");
case GAMMA_REC_709: // and GAMMA_REC_601
Expand Down
2 changes: 1 addition & 1 deletion gamma_expansion_effect.cpp
Expand Up @@ -13,7 +13,7 @@ std::string GammaExpansionEffect::output_fragment_shader()
{
switch (source_curve) {
case GAMMA_LINEAR:
return read_file("identity.glsl");
return read_file("identity-fs.glsl");
case GAMMA_sRGB:
return read_file("gamma_expansion_effect_srgb.glsl");
case GAMMA_REC_709: // and GAMMA_REC_601
Expand Down
File renamed without changes.

0 comments on commit db1fbb7

Please sign in to comment.