| Index: cc/output/gl_renderer_unittest.cc
|
| diff --git a/cc/output/gl_renderer_unittest.cc b/cc/output/gl_renderer_unittest.cc
|
| index 67b311b7b0510cd6e5f4e2060e4e66770310f2e1..6cc774129068fad11c2bc9cd45b75f3b0c634f39 100644
|
| --- a/cc/output/gl_renderer_unittest.cc
|
| +++ b/cc/output/gl_renderer_unittest.cc
|
| @@ -191,13 +191,12 @@ class GLRendererShaderPixelTest : public GLRendererPixelTest {
|
| UVTextureMode uv_modes[2] = {UV_TEXTURE_MODE_UV, UV_TEXTURE_MODE_U_V};
|
| YUVAlphaTextureMode a_modes[2] = {YUV_NO_ALPHA_TEXTURE,
|
| YUV_HAS_ALPHA_TEXTURE};
|
| - ColorConversionMode c_modes[2] = {COLOR_CONVERSION_MODE_NONE,
|
| - COLOR_CONVERSION_MODE_LUT_FROM_YUV};
|
| + bool lut_modes[2] = {true, false};
|
| for (int j = 0; j < 2; j++) {
|
| for (int k = 0; k < 2; k++) {
|
| for (int l = 0; l < 2; l++) {
|
| const Program* program = renderer()->GetProgram(ProgramKey::YUVVideo(
|
| - precision, sampler, a_modes[j], uv_modes[k], c_modes[l]));
|
| + precision, sampler, a_modes[j], uv_modes[k], lut_modes[l]));
|
| EXPECT_PROGRAM_VALID(program);
|
| }
|
| }
|
|
|