]> git.sesse.net Git - movit/commitdiff
Rename identity.glsl to identity-fs.glsl.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 2 Oct 2012 11:37:57 +0000 (13:37 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 2 Oct 2012 11:37:57 +0000 (13:37 +0200)
gamma_compression_effect.cpp
gamma_expansion_effect.cpp
identity-fs.glsl [moved from identity.glsl with 100% similarity]

index b6a737bf4416315b79f1f8e58449a4440679ef60..32e4477cf805735a5735369e5baf64e3d789c536 100644 (file)
@@ -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
index 8930b9f1d4a8ed76cdf450682970be13bbd29d10..9391a91f55bd9be3c171a9ad911d71d1e4ca6a9c 100644 (file)
@@ -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
similarity index 100%
rename from identity.glsl
rename to identity-fs.glsl