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 MojoGLES2ContextPrivate { | 30 class GLES2Context : public CommandBufferDelegate, |
| 31 public MojoGLES2ContextPrivate { |
31 public: | 32 public: |
32 explicit GLES2Context(const std::vector<int32_t>& attribs, | 33 explicit GLES2Context(const std::vector<int32_t>& attribs, |
33 mojo::ScopedMessagePipeHandle command_buffer_handle, | 34 mojo::ScopedMessagePipeHandle command_buffer_handle, |
34 MojoGLES2ContextLost lost_callback, | 35 MojoGLES2ContextLost lost_callback, |
35 void* closure); | 36 void* closure); |
36 virtual ~GLES2Context(); | 37 ~GLES2Context() override; |
37 bool Initialize(); | 38 bool Initialize(); |
38 | 39 |
39 gpu::gles2::GLES2Interface* interface() const { | 40 gpu::gles2::GLES2Interface* interface() const { |
40 return implementation_.get(); | 41 return implementation_.get(); |
41 } | 42 } |
42 gpu::ContextSupport* context_support() const { return implementation_.get(); } | 43 gpu::ContextSupport* context_support() const { return implementation_.get(); } |
43 | 44 |
44 private: | 45 private: |
45 void OnLostContext(); | 46 void ContextLost() override; |
46 | 47 |
47 CommandBufferClientImpl command_buffer_; | 48 CommandBufferClientImpl command_buffer_; |
48 scoped_ptr<gpu::gles2::GLES2CmdHelper> gles2_helper_; | 49 scoped_ptr<gpu::gles2::GLES2CmdHelper> gles2_helper_; |
49 scoped_ptr<gpu::TransferBuffer> transfer_buffer_; | 50 scoped_ptr<gpu::TransferBuffer> transfer_buffer_; |
50 scoped_ptr<gpu::gles2::GLES2Implementation> implementation_; | 51 scoped_ptr<gpu::gles2::GLES2Implementation> implementation_; |
51 MojoGLES2ContextLost lost_callback_; | 52 MojoGLES2ContextLost lost_callback_; |
52 void* closure_; | 53 void* closure_; |
53 | 54 |
54 DISALLOW_COPY_AND_ASSIGN(GLES2Context); | 55 DISALLOW_COPY_AND_ASSIGN(GLES2Context); |
55 }; | 56 }; |
56 | 57 |
57 } // namespace gles2 | 58 } // namespace gles2 |
58 | 59 |
59 #endif // MOJO_GLES2_GLES2_CONTEXT_H_ | 60 #endif // MOJO_GLES2_GLES2_CONTEXT_H_ |
OLD | NEW |