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

Side by Side Diff: webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc

Issue 10796096: Add tracing of all memory allocated in all contexts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add global memory usage tracking Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h" 5 #include "webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h"
6 6
7 #include <GLES2/gl2.h> 7 #include <GLES2/gl2.h>
8 #ifndef GL_GLEXT_PROTOTYPES 8 #ifndef GL_GLEXT_PROTOTYPES
9 #define GL_GLEXT_PROTOTYPES 1 9 #define GL_GLEXT_PROTOTYPES 1
10 #endif 10 #endif
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 if (!command_buffer_->Initialize()) { 406 if (!command_buffer_->Initialize()) {
407 LOG(ERROR) << "Could not initialize command buffer."; 407 LOG(ERROR) << "Could not initialize command buffer.";
408 Destroy(); 408 Destroy();
409 return false; 409 return false;
410 } 410 }
411 411
412 // TODO(gman): This needs to be true if this is Pepper. 412 // TODO(gman): This needs to be true if this is Pepper.
413 bool bind_generates_resource = false; 413 bool bind_generates_resource = false;
414 decoder_.reset(::gpu::gles2::GLES2Decoder::Create(context_group ? 414 decoder_.reset(::gpu::gles2::GLES2Decoder::Create(context_group ?
415 context_group->decoder_->GetContextGroup() : 415 context_group->decoder_->GetContextGroup() :
416 new ::gpu::gles2::ContextGroup(NULL, bind_generates_resource))); 416 new ::gpu::gles2::ContextGroup(NULL, NULL, bind_generates_resource)));
417 417
418 gpu_scheduler_.reset(new GpuScheduler(command_buffer_.get(), 418 gpu_scheduler_.reset(new GpuScheduler(command_buffer_.get(),
419 decoder_.get(), 419 decoder_.get(),
420 decoder_.get())); 420 decoder_.get()));
421 421
422 decoder_->set_engine(gpu_scheduler_.get()); 422 decoder_->set_engine(gpu_scheduler_.get());
423 423
424 surface_ = gfx::GLSurface::CreateOffscreenGLSurface(false, gfx::Size(1, 1)); 424 surface_ = gfx::GLSurface::CreateOffscreenGLSurface(false, gfx::Size(1, 1));
425 425
426 if (!surface_.get()) { 426 if (!surface_.get()) {
(...skipping 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after
1635 if (context_lost_callback_) { 1635 if (context_lost_callback_) {
1636 context_lost_callback_->onContextLost(); 1636 context_lost_callback_->onContextLost();
1637 } 1637 }
1638 } 1638 }
1639 1639
1640 DELEGATE_TO_GL_3(bindUniformLocationCHROMIUM, BindUniformLocationCHROMIUM, 1640 DELEGATE_TO_GL_3(bindUniformLocationCHROMIUM, BindUniformLocationCHROMIUM,
1641 WebGLId, WGC3Dint, const WGC3Dchar*) 1641 WebGLId, WGC3Dint, const WGC3Dchar*)
1642 1642
1643 } // namespace gpu 1643 } // namespace gpu
1644 } // namespace webkit 1644 } // namespace webkit
OLDNEW
« gpu/command_buffer/service/texture_manager.cc ('K') | « gpu/gles2_conform_support/egl/display.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698