| Index: cc/output/renderer_pixeltest.cc
|
| diff --git a/cc/output/renderer_pixeltest.cc b/cc/output/renderer_pixeltest.cc
|
| index eaffb5c3d9530c87574b0bd4b5327542db3eb4de..d1ed8e928178d89ca287c1857ae10cb159b49833 100644
|
| --- a/cc/output/renderer_pixeltest.cc
|
| +++ b/cc/output/renderer_pixeltest.cc
|
| @@ -2084,7 +2084,8 @@ class ExternalStencilPixelTest : public GLRendererPixelTest {
|
| void ClearBackgroundToGreen() {
|
| GLES2Interface* gl = output_surface_->context_provider()->ContextGL();
|
| output_surface_->EnsureBackbuffer();
|
| - output_surface_->Reshape(device_viewport_size_, 1, true);
|
| + output_surface_->Reshape(device_viewport_size_, 1, gfx::ColorProfile(),
|
| + true);
|
| gl->ClearColor(0.f, 1.f, 0.f, 1.f);
|
| gl->Clear(GL_COLOR_BUFFER_BIT);
|
| }
|
| @@ -2093,7 +2094,8 @@ class ExternalStencilPixelTest : public GLRendererPixelTest {
|
| // Set two quadrants of the stencil buffer to 1.
|
| GLES2Interface* gl = output_surface_->context_provider()->ContextGL();
|
| output_surface_->EnsureBackbuffer();
|
| - output_surface_->Reshape(device_viewport_size_, 1, true);
|
| + output_surface_->Reshape(device_viewport_size_, 1, gfx::ColorProfile(),
|
| + true);
|
| gl->ClearStencil(0);
|
| gl->Clear(GL_STENCIL_BUFFER_BIT);
|
| gl->Enable(GL_SCISSOR_TEST);
|
|
|