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

Side by Side Diff: webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h

Issue 470973002: gpu: Remove WebGraphicsContext3D::makeContextCurrent() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use scoped_ptr and remove unrelated changes. Created 6 years, 4 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
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 #ifndef WEBKIT_COMMON_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_ 5 #ifndef WEBKIT_COMMON_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_
6 #define WEBKIT_COMMON_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_ 6 #define WEBKIT_COMMON_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 const blink::WebGraphicsContext3D::Attributes& attributes, 47 const blink::WebGraphicsContext3D::Attributes& attributes,
48 bool lose_context_when_out_of_memory); 48 bool lose_context_when_out_of_memory);
49 49
50 static scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> 50 static scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl>
51 WrapContext( 51 WrapContext(
52 scoped_ptr< ::gpu::GLInProcessContext> context, 52 scoped_ptr< ::gpu::GLInProcessContext> context,
53 const blink::WebGraphicsContext3D::Attributes& attributes); 53 const blink::WebGraphicsContext3D::Attributes& attributes);
54 54
55 virtual ~WebGraphicsContext3DInProcessCommandBufferImpl(); 55 virtual ~WebGraphicsContext3DInProcessCommandBufferImpl();
56 56
57 // WebGraphicsContext3DImpl methods
58 virtual bool BindToCurrentThread() OVERRIDE;
59
57 //---------------------------------------------------------------------- 60 //----------------------------------------------------------------------
58 // WebGraphicsContext3D methods 61 // WebGraphicsContext3D methods
59 virtual bool makeContextCurrent();
60
61 virtual bool isContextLost(); 62 virtual bool isContextLost();
62 63
63 virtual WGC3Denum getGraphicsResetStatusARB(); 64 virtual WGC3Denum getGraphicsResetStatusARB();
64 65
65 ::gpu::ContextSupport* GetContextSupport(); 66 ::gpu::ContextSupport* GetContextSupport();
66 67
67 ::gpu::gles2::GLES2Implementation* GetImplementation() { 68 ::gpu::gles2::GLES2Implementation* GetImplementation() {
68 return real_gl_; 69 return real_gl_;
69 } 70 }
70 71
(...skipping 24 matching lines...) Expand all
95 // The context we use for OpenGL rendering. 96 // The context we use for OpenGL rendering.
96 scoped_ptr< ::gpu::GLInProcessContext> context_; 97 scoped_ptr< ::gpu::GLInProcessContext> context_;
97 // The GLES2Implementation we use for OpenGL rendering. 98 // The GLES2Implementation we use for OpenGL rendering.
98 ::gpu::gles2::GLES2Implementation* real_gl_; 99 ::gpu::gles2::GLES2Implementation* real_gl_;
99 }; 100 };
100 101
101 } // namespace gpu 102 } // namespace gpu
102 } // namespace webkit 103 } // namespace webkit
103 104
104 #endif // WEBKIT_COMMON_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL _H_ 105 #endif // WEBKIT_COMMON_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_COMMAND_BUFFER_IMPL _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698