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

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

Issue 8512005: Plumb through EGL_NV_post_sub_buffer and GLX_MESA_copy_sub_buffer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address reviewer comments. Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #if defined(ENABLE_GPU) 5 #if defined(ENABLE_GPU)
6 6
7 #include "webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h" 7 #include "webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h"
8 8
9 #include <GLES2/gl2.h> 9 #include <GLES2/gl2.h>
10 #ifndef GL_GLEXT_PROTOTYPES 10 #ifndef GL_GLEXT_PROTOTYPES
(...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 DCHECK(context_); 751 DCHECK(context_);
752 return context_->GetParentTextureId(); 752 return context_->GetParentTextureId();
753 } 753 }
754 754
755 void WebGraphicsContext3DInProcessCommandBufferImpl::prepareTexture() { 755 void WebGraphicsContext3DInProcessCommandBufferImpl::prepareTexture() {
756 // Copies the contents of the off-screen render target into the texture 756 // Copies the contents of the off-screen render target into the texture
757 // used by the compositor. 757 // used by the compositor.
758 context_->SwapBuffers(); 758 context_->SwapBuffers();
759 } 759 }
760 760
761 void WebGraphicsContext3DInProcessCommandBufferImpl::postSubBufferCHROMIUM(
762 int x, int y, int width, int height) {
763 gl_->PostSubBufferCHROMIUM(x, y, width, height);
764 }
765
761 void WebGraphicsContext3DInProcessCommandBufferImpl::reshape( 766 void WebGraphicsContext3DInProcessCommandBufferImpl::reshape(
762 int width, int height) { 767 int width, int height) {
763 cached_width_ = width; 768 cached_width_ = width;
764 cached_height_ = height; 769 cached_height_ = height;
765 770
766 // TODO(gmam): See if we can comment this in. 771 // TODO(gmam): See if we can comment this in.
767 // ClearContext(); 772 // ClearContext();
768 773
769 gl_->ResizeCHROMIUM(width, height); 774 gl_->ResizeCHROMIUM(width, height);
770 775
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
1658 context_lost_reason_ = GL_UNKNOWN_CONTEXT_RESET_ARB; 1663 context_lost_reason_ = GL_UNKNOWN_CONTEXT_RESET_ARB;
1659 if (context_lost_callback_) { 1664 if (context_lost_callback_) {
1660 context_lost_callback_->onContextLost(); 1665 context_lost_callback_->onContextLost();
1661 } 1666 }
1662 } 1667 }
1663 1668
1664 } // namespace gpu 1669 } // namespace gpu
1665 } // namespace webkit 1670 } // namespace webkit
1666 1671
1667 #endif // defined(ENABLE_GPU) 1672 #endif // defined(ENABLE_GPU)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698