| Index: third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
|
| index e74cfa5de720fe1c96b4c6883f7d0b50aa17eeb7..9d076873a0afda5bd0e1075be70f60dfb201d757 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
|
| @@ -809,7 +809,7 @@ void DrawingBuffer::commit()
|
| int width = m_size.width();
|
| int height = m_size.height();
|
| // Use NEAREST, because there is no scale performed during the blit.
|
| - m_context->blitFramebufferCHROMIUM(0, 0, width, height, 0, 0, width, height, GL_COLOR_BUFFER_BIT, GL_NEAREST);
|
| + m_gl->BlitFramebufferCHROMIUM(0, 0, width, height, 0, 0, width, height, GL_COLOR_BUFFER_BIT, GL_NEAREST);
|
|
|
| if (m_scissorEnabled)
|
| m_gl->Enable(GL_SCISSOR_TEST);
|
|
|