Index: chrome/renderer/ggl/ggl.cc |
=================================================================== |
--- chrome/renderer/ggl/ggl.cc (revision 45605) |
+++ chrome/renderer/ggl/ggl.cc (working copy) |
@@ -120,7 +120,7 @@ |
// Allocate a frame buffer ID with respect to the parent. |
if (parent_) { |
- parent_->gles2_implementation_->MakeIds(1, &parent_texture_id_); |
+ parent_texture_id_ = parent_->gles2_implementation_->MakeTextureId(); |
} |
// Create a proxy to a command buffer in the GPU process. |
@@ -186,7 +186,7 @@ |
void Context::Destroy() { |
if (parent_ && parent_texture_id_ != 0) |
- parent_->gles2_implementation_->FreeIds(1, &parent_texture_id_); |
+ parent_->gles2_implementation_->FreeTextureId(parent_texture_id_); |
delete gles2_implementation_; |
gles2_implementation_ = NULL; |