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

Side by Side Diff: components/mus/public/cpp/gles2_context.h

Issue 2007813003: Remove Mojo GLES2 API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 4 years, 6 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
« no previous file with comments | « components/mus/public/cpp/context_provider.h ('k') | components/mus/public/cpp/lib/DEPS » ('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 #ifndef COMPONENTS_MUS_PUBLIC_CPP_GLES2_CONTEXT_H_ 5 #ifndef COMPONENTS_MUS_PUBLIC_CPP_GLES2_CONTEXT_H_
6 #define COMPONENTS_MUS_PUBLIC_CPP_GLES2_CONTEXT_H_ 6 #define COMPONENTS_MUS_PUBLIC_CPP_GLES2_CONTEXT_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "components/mus/public/cpp/lib/command_buffer_client_impl.h" 14 #include "components/mus/public/cpp/lib/command_buffer_client_impl.h"
15 #include "gpu/command_buffer/client/gles2_implementation.h" 15 #include "gpu/command_buffer/client/gles2_implementation.h"
16 #include "mojo/public/c/gles2/gles2.h"
17
18 struct MojoGLES2ContextPrivate {};
19 16
20 namespace gpu { 17 namespace gpu {
21 class TransferBuffer; 18 class TransferBuffer;
22 namespace gles2 { 19 namespace gles2 {
23 class GLES2CmdHelper; 20 class GLES2CmdHelper;
24 class GLES2Implementation; 21 class GLES2Implementation;
25 } 22 }
26 } 23 }
27 24
28 namespace mus { 25 namespace mus {
29 26
30 class GLES2Context : public MojoGLES2ContextPrivate { 27 class GLES2Context {
31 public: 28 public:
32 explicit GLES2Context(const std::vector<int32_t>& attribs, 29 explicit GLES2Context(const std::vector<int32_t>& attribs,
33 mojo::ScopedMessagePipeHandle command_buffer_handle, 30 mojo::ScopedMessagePipeHandle command_buffer_handle);
34 MojoGLES2ContextLost lost_callback,
35 void* closure);
36 virtual ~GLES2Context(); 31 virtual ~GLES2Context();
37 bool Initialize(); 32 bool Initialize();
38 33
39 gpu::gles2::GLES2Interface* interface() const { 34 gpu::gles2::GLES2Interface* interface() const {
40 return implementation_.get(); 35 return implementation_.get();
41 } 36 }
42 gpu::ContextSupport* context_support() const { return implementation_.get(); } 37 gpu::ContextSupport* context_support() const { return implementation_.get(); }
43 38
44 private: 39 private:
45 void OnLostContext();
46
47 CommandBufferClientImpl command_buffer_; 40 CommandBufferClientImpl command_buffer_;
48 std::unique_ptr<gpu::gles2::GLES2CmdHelper> gles2_helper_; 41 std::unique_ptr<gpu::gles2::GLES2CmdHelper> gles2_helper_;
49 std::unique_ptr<gpu::TransferBuffer> transfer_buffer_; 42 std::unique_ptr<gpu::TransferBuffer> transfer_buffer_;
50 std::unique_ptr<gpu::gles2::GLES2Implementation> implementation_; 43 std::unique_ptr<gpu::gles2::GLES2Implementation> implementation_;
51 MojoGLES2ContextLost lost_callback_;
52 void* closure_;
53 44
54 DISALLOW_COPY_AND_ASSIGN(GLES2Context); 45 DISALLOW_COPY_AND_ASSIGN(GLES2Context);
55 }; 46 };
56 47
57 } // namespace mus 48 } // namespace mus
58 49
59 #endif // COMPONENTS_MUS_PUBLIC_CPP_GLES2_CONTEXT_H_ 50 #endif // COMPONENTS_MUS_PUBLIC_CPP_GLES2_CONTEXT_H_
OLDNEW
« no previous file with comments | « components/mus/public/cpp/context_provider.h ('k') | components/mus/public/cpp/lib/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698