Chromium Code Reviews| Index: content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc |
| diff --git a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc |
| index 2c26f2a827fa49c1e8b18c5dd60f3071a291fa0f..3c2d04e81385a0557d15aa60b5f599b42404442e 100644 |
| --- a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc |
| +++ b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc |
| @@ -939,6 +939,10 @@ void WebGraphicsContext3DCommandBufferImpl::flush() { |
| gl_->FreeEverything(); |
| } |
| +void WebGraphicsContext3DCommandBufferImpl::shallowFlushCHROMIUM() { |
| + gl_->ShallowFlushCHROMIUM(); |
|
nduca
2012/07/18 06:13:06
Was there a reason you couldn't say gl_->helper()-
brianderson
2012/07/19 03:29:44
In each of the wgc3d implementations I copied the
|
| +} |
| + |
| DELEGATE_TO_GL_4(framebufferRenderbuffer, FramebufferRenderbuffer, |
|
nduca
2012/07/18 06:13:06
Who is advertising the extension as being supporte
brianderson
2012/07/19 03:29:44
It is advertised with other client-side-only exten
|
| WGC3Denum, WGC3Denum, WGC3Denum, WebGLId) |