Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10420)

Unified Diff: chrome/renderer/ggl/ggl.cc

Issue 1747013: Changes the code to use separate ids namspaces... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gpu/command_buffer/build_gles2_cmd_buffer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | gpu/command_buffer/build_gles2_cmd_buffer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698