| 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 89a0a52a81bb09a670378802c5da76bc19a0c70d..17301cfb74e3c0c586f49362e1e8120b7e43506e 100644
|
| --- a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc
|
| +++ b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc
|
| @@ -1533,6 +1533,18 @@ DELEGATE_TO_GL_2(produceTextureCHROMIUM, ProduceTextureCHROMIUM,
|
| DELEGATE_TO_GL_2(consumeTextureCHROMIUM, ConsumeTextureCHROMIUM,
|
| WGC3Denum, const WGC3Dbyte*)
|
|
|
| +void WebGraphicsContext3DCommandBufferImpl::insertEventMarkerEXT(
|
| + const WGC3Dchar* marker) {
|
| + gl_->InsertEventMarkerEXT(0, marker);
|
| +}
|
| +
|
| +void WebGraphicsContext3DCommandBufferImpl::pushGroupMarkerEXT(
|
| + const WGC3Dchar* marker) {
|
| + gl_->PushGroupMarkerEXT(0, marker);
|
| +}
|
| +
|
| +DELEGATE_TO_GL(popGroupMarkerEXT, PopGroupMarkerEXT);
|
| +
|
| GrGLInterface* WebGraphicsContext3DCommandBufferImpl::onCreateGrGLInterface() {
|
| return webkit_glue::CreateCommandBufferSkiaGLBinding();
|
| }
|
|
|