X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=alpha_multiplication_effect_test.cpp;h=6ee428970bded340f5039d5e657b3fdc756e4d52;hb=572e7aaa57028d7eda4bc445a6249637134a2b02;hp=eab4b25e737955aeeadcff94858177ac856ea417;hpb=5d4c0425579de66b3e2dd7d0095e890278f8efcf;p=movit diff --git a/alpha_multiplication_effect_test.cpp b/alpha_multiplication_effect_test.cpp index eab4b25..6ee4289 100644 --- a/alpha_multiplication_effect_test.cpp +++ b/alpha_multiplication_effect_test.cpp @@ -17,7 +17,7 @@ TEST(AlphaMultiplicationEffectTest, SimpleTest) { }; float out_data[4 * size]; EffectChainTester tester(data, 1, size, FORMAT_RGBA_POSTMULTIPLIED_ALPHA, COLORSPACE_sRGB, GAMMA_LINEAR); - tester.run(out_data, GL_RGBA, COLORSPACE_sRGB, GAMMA_LINEAR, OUTPUT_ALPHA_PREMULTIPLIED); + tester.run(out_data, GL_RGBA, COLORSPACE_sRGB, GAMMA_LINEAR, OUTPUT_ALPHA_FORMAT_PREMULTIPLIED); expect_equal(expected_data, out_data, 4, size); }