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

Side by Side Diff: mojo/gles2/gles2_support_impl.cc

Issue 265793015: Mojo: Replace RemotePtr with InterfacePtr and InterfaceImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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
« no previous file with comments | « mojo/gles2/gles2_context.cc ('k') | mojo/mojo.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "mojo/gles2/gles2_support_impl.h" 5 #include "mojo/gles2/gles2_support_impl.h"
6 6
7 #include "base/lazy_instance.h" 7 #include "base/lazy_instance.h"
8 #include "gpu/command_buffer/client/gles2_interface.h" 8 #include "gpu/command_buffer/client/gles2_interface.h"
9 #include "mojo/gles2/gles2_context.h" 9 #include "mojo/gles2/gles2_context.h"
10 #include "mojo/public/gles2/gles2_interface.h" 10 #include "mojo/public/gles2/gles2_interface.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 void GLES2SupportImpl::Terminate() { 56 void GLES2SupportImpl::Terminate() {
57 DCHECK(async_waiter_); 57 DCHECK(async_waiter_);
58 async_waiter_ = NULL; 58 async_waiter_ = NULL;
59 } 59 }
60 60
61 MojoGLES2Context GLES2SupportImpl::CreateContext( 61 MojoGLES2Context GLES2SupportImpl::CreateContext(
62 MessagePipeHandle handle, 62 MessagePipeHandle handle,
63 MojoGLES2ContextLost lost_callback, 63 MojoGLES2ContextLost lost_callback,
64 MojoGLES2DrawAnimationFrame animation_callback, 64 MojoGLES2DrawAnimationFrame animation_callback,
65 void* closure) { 65 void* closure) {
66 ScopedCommandBufferHandle scoped_handle(CommandBufferHandle(handle.value())); 66 ScopedMessagePipeHandle scoped_handle(handle);
piman 2014/05/09 23:02:58 drive-by: We couldn't keep the type safety?
67 scoped_ptr<GLES2Context> client(new GLES2Context(async_waiter_, 67 scoped_ptr<GLES2Context> client(new GLES2Context(async_waiter_,
68 scoped_handle.Pass(), 68 scoped_handle.Pass(),
69 lost_callback, 69 lost_callback,
70 animation_callback, 70 animation_callback,
71 closure)); 71 closure));
72 if (!client->Initialize()) 72 if (!client->Initialize())
73 client.reset(); 73 client.reset();
74 return client.release(); 74 return client.release();
75 } 75 }
76 76
(...skipping 30 matching lines...) Expand all
107 void* GLES2SupportImpl::GetContextSupport(MojoGLES2Context context) { 107 void* GLES2SupportImpl::GetContextSupport(MojoGLES2Context context) {
108 return static_cast<GLES2Context*>(context)->context_support(); 108 return static_cast<GLES2Context*>(context)->context_support();
109 } 109 }
110 110
111 GLES2Interface* GLES2SupportImpl::GetGLES2InterfaceForCurrentContext() { 111 GLES2Interface* GLES2SupportImpl::GetGLES2InterfaceForCurrentContext() {
112 return &g_gles2_interface.Get(); 112 return &g_gles2_interface.Get();
113 } 113 }
114 114
115 } // namespace gles2 115 } // namespace gles2
116 } // namespace mojo 116 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/gles2/gles2_context.cc ('k') | mojo/mojo.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698