OLD | NEW |
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 #ifndef MOJO_CC_CONTEXT_PROVIDER_MOJO_H_ | 5 #ifndef MOJO_CC_CONTEXT_PROVIDER_MOJO_H_ |
6 #define MOJO_CC_CONTEXT_PROVIDER_MOJO_H_ | 6 #define MOJO_CC_CONTEXT_PROVIDER_MOJO_H_ |
7 | 7 |
8 #include "cc/output/context_provider.h" | 8 #include "cc/output/context_provider.h" |
9 #include "mojo/public/c/gles2/gles2.h" | 9 #include "mojo/public/c/gles2/gles2.h" |
10 #include "mojo/public/cpp/system/core.h" | 10 #include "mojo/public/cpp/system/core.h" |
11 | 11 |
12 namespace mojo { | 12 namespace mojo { |
13 | 13 |
14 class ContextProviderMojo : public cc::ContextProvider { | 14 class ContextProviderMojo : public cc::ContextProvider { |
15 public: | 15 public: |
16 explicit ContextProviderMojo(ScopedMessagePipeHandle gl_pipe); | 16 explicit ContextProviderMojo(ScopedMessagePipeHandle command_buffer_handle); |
17 | 17 |
18 // cc::ContextProvider implementation. | 18 // cc::ContextProvider implementation. |
19 virtual bool BindToCurrentThread() OVERRIDE; | 19 virtual bool BindToCurrentThread() OVERRIDE; |
20 virtual gpu::gles2::GLES2Interface* ContextGL() OVERRIDE; | 20 virtual gpu::gles2::GLES2Interface* ContextGL() OVERRIDE; |
21 virtual gpu::ContextSupport* ContextSupport() OVERRIDE; | 21 virtual gpu::ContextSupport* ContextSupport() OVERRIDE; |
22 virtual class GrContext* GrContext() OVERRIDE; | 22 virtual class GrContext* GrContext() OVERRIDE; |
23 virtual Capabilities ContextCapabilities() OVERRIDE; | 23 virtual Capabilities ContextCapabilities() OVERRIDE; |
24 virtual bool IsContextLost() OVERRIDE; | 24 virtual bool IsContextLost() OVERRIDE; |
25 virtual void VerifyContexts() OVERRIDE {} | 25 virtual void VerifyContexts() OVERRIDE {} |
26 virtual void DeleteCachedResources() OVERRIDE {} | 26 virtual void DeleteCachedResources() OVERRIDE {} |
27 virtual bool DestroyedOnMainThread() OVERRIDE; | 27 virtual bool DestroyedOnMainThread() OVERRIDE; |
28 virtual void SetLostContextCallback( | 28 virtual void SetLostContextCallback( |
29 const LostContextCallback& lost_context_callback) OVERRIDE {} | 29 const LostContextCallback& lost_context_callback) OVERRIDE {} |
30 virtual void SetMemoryPolicyChangedCallback( | 30 virtual void SetMemoryPolicyChangedCallback( |
31 const MemoryPolicyChangedCallback& memory_policy_changed_callback) | 31 const MemoryPolicyChangedCallback& memory_policy_changed_callback) |
32 OVERRIDE {} | 32 OVERRIDE {} |
33 | 33 |
34 protected: | 34 protected: |
35 friend class base::RefCountedThreadSafe<ContextProviderMojo>; | 35 friend class base::RefCountedThreadSafe<ContextProviderMojo>; |
36 virtual ~ContextProviderMojo(); | 36 virtual ~ContextProviderMojo(); |
37 | 37 |
38 private: | 38 private: |
39 static void ContextLostThunk(void* closure) { | 39 static void ContextLostThunk(void* closure) { |
40 static_cast<ContextProviderMojo*>(closure)->ContextLost(); | 40 static_cast<ContextProviderMojo*>(closure)->ContextLost(); |
41 } | 41 } |
42 void ContextLost(); | 42 void ContextLost(); |
43 | 43 |
44 cc::ContextProvider::Capabilities capabilities_; | 44 cc::ContextProvider::Capabilities capabilities_; |
45 ScopedMessagePipeHandle gl_pipe_; | 45 ScopedMessagePipeHandle command_buffer_handle_; |
46 MojoGLES2Context context_; | 46 MojoGLES2Context context_; |
47 }; | 47 }; |
48 | 48 |
49 } // namespace mojo | 49 } // namespace mojo |
50 | 50 |
51 #endif // MOJO_CC_CONTEXT_PROVIDER_MOJO_H_ | 51 #endif // MOJO_CC_CONTEXT_PROVIDER_MOJO_H_ |
OLD | NEW |