From: Steinar H. Gunderson Date: Tue, 2 Oct 2012 11:37:57 +0000 (+0200) Subject: Rename identity.glsl to identity-fs.glsl. X-Git-Tag: 1.0~430 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=db1fbb73b18b68850f61d1c8b89f2e4d3f7aadc1;ds=sidebyside Rename identity.glsl to identity-fs.glsl. --- diff --git a/gamma_compression_effect.cpp b/gamma_compression_effect.cpp index b6a737b..32e4477 100644 --- a/gamma_compression_effect.cpp +++ b/gamma_compression_effect.cpp @@ -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 diff --git a/gamma_expansion_effect.cpp b/gamma_expansion_effect.cpp index 8930b9f..9391a91 100644 --- a/gamma_expansion_effect.cpp +++ b/gamma_expansion_effect.cpp @@ -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 diff --git a/identity.glsl b/identity-fs.glsl similarity index 100% rename from identity.glsl rename to identity-fs.glsl