Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Unified Diff: cc/output/gl_renderer_unittest.cc

Issue 2088273003: Video Color Managament (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use gfx::ColorProfile Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/output/gl_renderer_unittest.cc
diff --git a/cc/output/gl_renderer_unittest.cc b/cc/output/gl_renderer_unittest.cc
index b596162c35cca5e6ce22b0ef24726602229f3439..4f1dd2fc8d688b3da96af8ff360b4f2633c263ce 100644
--- a/cc/output/gl_renderer_unittest.cc
+++ b/cc/output/gl_renderer_unittest.cc
@@ -185,8 +185,10 @@ class GLRendererShaderPixelTest : public GLRendererPixelTest {
renderer()->GetTileProgramSwizzleAA(precision, sampler));
for (int j = 0; j < 2; j++) {
for (int k = 0; k < 2; k++) {
- EXPECT_PROGRAM_VALID(
- renderer()->GetVideoYUVProgram(precision, sampler, j, k));
+ for (int l = 0; l < 2; l++) {
+ EXPECT_PROGRAM_VALID(
+ renderer()->GetVideoYUVProgram(precision, sampler, j, k, l));
+ }
}
}
}

Powered by Google App Engine
This is Rietveld 408576698