| 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 43952c5dd8961da343bc8312b916dd6406ee0a1c..277226515ae2aaedbaa28badcc3a3c6fc03b6014 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
|
| @@ -807,7 +807,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);
|
|
|