From db1fbb73b18b68850f61d1c8b89f2e4d3f7aadc1 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 2 Oct 2012 13:37:57 +0200 Subject: [PATCH] Rename identity.glsl to identity-fs.glsl. --- gamma_compression_effect.cpp | 2 +- gamma_expansion_effect.cpp | 2 +- identity.glsl => identity-fs.glsl | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename identity.glsl => identity-fs.glsl (100%) 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 -- 2.39.2