]> git.sesse.net Git - movit/blobdiff - alpha_multiplication_effect_test.cpp
Rename the OutputAlphaFormat enums; they had gotten inconsistent after the last alpha...
[movit] / alpha_multiplication_effect_test.cpp
index eab4b25e737955aeeadcff94858177ac856ea417..6ee428970bded340f5039d5e657b3fdc756e4d52 100644 (file)
@@ -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);
 }