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_GLES2_GLES2_CONTEXT_H_ | 5 #ifndef MOJO_GLES2_GLES2_CONTEXT_H_ |
6 #define MOJO_GLES2_GLES2_CONTEXT_H_ | 6 #define MOJO_GLES2_GLES2_CONTEXT_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "gpu/command_buffer/client/gles2_implementation.h" | 14 #include "gpu/command_buffer/client/gles2_implementation.h" |
15 #include "mojo/gles2/command_buffer_client_impl.h" | 15 #include "mojo/gles2/command_buffer_client_impl.h" |
16 #include "mojo/public/c/gles2/gles2.h" | 16 #include "mojo/public/c/gles2/gles2.h" |
17 | 17 |
18 struct MojoGLES2ContextPrivate {}; | 18 struct MojoGLES2ContextPrivate {}; |
19 | 19 |
20 namespace gpu { | 20 namespace gpu { |
21 class TransferBuffer; | 21 class TransferBuffer; |
22 namespace gles2 { | 22 namespace gles2 { |
23 class GLES2CmdHelper; | 23 class GLES2CmdHelper; |
24 class GLES2Implementation; | 24 class GLES2Implementation; |
25 } | 25 } |
26 } | 26 } |
27 | 27 |
28 namespace gles2 { | 28 namespace gles2 { |
29 | 29 |
30 class GLES2Context : public CommandBufferDelegate, | 30 class GLES2Context : public MojoGLES2ContextPrivate { |
31 public MojoGLES2ContextPrivate { | |
32 public: | 31 public: |
33 explicit GLES2Context(const std::vector<int32_t>& attribs, | 32 explicit GLES2Context(const std::vector<int32_t>& attribs, |
34 mojo::ScopedMessagePipeHandle command_buffer_handle, | 33 mojo::ScopedMessagePipeHandle command_buffer_handle, |
35 MojoGLES2ContextLost lost_callback, | 34 MojoGLES2ContextLost lost_callback, |
36 void* closure); | 35 void* closure); |
37 ~GLES2Context() override; | 36 virtual ~GLES2Context(); |
38 bool Initialize(); | 37 bool Initialize(); |
39 | 38 |
40 gpu::gles2::GLES2Interface* interface() const { | 39 gpu::gles2::GLES2Interface* interface() const { |
41 return implementation_.get(); | 40 return implementation_.get(); |
42 } | 41 } |
43 gpu::ContextSupport* context_support() const { return implementation_.get(); } | 42 gpu::ContextSupport* context_support() const { return implementation_.get(); } |
44 | 43 |
45 private: | 44 private: |
46 void ContextLost() override; | 45 void OnLostContext(); |
47 | 46 |
48 CommandBufferClientImpl command_buffer_; | 47 CommandBufferClientImpl command_buffer_; |
49 scoped_ptr<gpu::gles2::GLES2CmdHelper> gles2_helper_; | 48 scoped_ptr<gpu::gles2::GLES2CmdHelper> gles2_helper_; |
50 scoped_ptr<gpu::TransferBuffer> transfer_buffer_; | 49 scoped_ptr<gpu::TransferBuffer> transfer_buffer_; |
51 scoped_ptr<gpu::gles2::GLES2Implementation> implementation_; | 50 scoped_ptr<gpu::gles2::GLES2Implementation> implementation_; |
52 MojoGLES2ContextLost lost_callback_; | 51 MojoGLES2ContextLost lost_callback_; |
53 void* closure_; | 52 void* closure_; |
54 | 53 |
55 DISALLOW_COPY_AND_ASSIGN(GLES2Context); | 54 DISALLOW_COPY_AND_ASSIGN(GLES2Context); |
56 }; | 55 }; |
57 | 56 |
58 } // namespace gles2 | 57 } // namespace gles2 |
59 | 58 |
60 #endif // MOJO_GLES2_GLES2_CONTEXT_H_ | 59 #endif // MOJO_GLES2_GLES2_CONTEXT_H_ |
OLD | NEW |