X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=gamma_expansion_effect.cpp;h=61f0330f1671967cb4f85786085bbf771352b57b;hp=9391a91f55bd9be3c171a9ad911d71d1e4ca6a9c;hb=d4542f76df5d26843c68b1467e76722cffd801a1;hpb=873b60b640a96c8fb4c2d8c88c85d20e0a2dca6b diff --git a/gamma_expansion_effect.cpp b/gamma_expansion_effect.cpp index 9391a91..61f0330 100644 --- a/gamma_expansion_effect.cpp +++ b/gamma_expansion_effect.cpp @@ -13,11 +13,11 @@ std::string GammaExpansionEffect::output_fragment_shader() { switch (source_curve) { case GAMMA_LINEAR: - return read_file("identity-fs.glsl"); + return read_file("identity.frag"); case GAMMA_sRGB: - return read_file("gamma_expansion_effect_srgb.glsl"); + return read_file("gamma_expansion_effect_srgb.frag"); case GAMMA_REC_709: // and GAMMA_REC_601 - return read_file("gamma_expansion_effect_rec709.glsl"); + return read_file("gamma_expansion_effect_rec709.frag"); default: assert(false); }