OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 GPU_COMMAND_BUFFER_CLIENT_SHARE_GROUP_H_ | 5 #ifndef GPU_COMMAND_BUFFER_CLIENT_SHARE_GROUP_H_ |
6 #define GPU_COMMAND_BUFFER_CLIENT_SHARE_GROUP_H_ | 6 #define GPU_COMMAND_BUFFER_CLIENT_SHARE_GROUP_H_ |
7 | 7 |
8 #include <GLES2/gl2.h> | 8 #include <GLES2/gl2.h> |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "../client/ref_counted.h" | |
11 #include "../common/gles2_cmd_format.h" | |
12 #include "gles2_impl_export.h" | 10 #include "gles2_impl_export.h" |
| 11 #include "gpu/command_buffer/client/ref_counted.h" |
| 12 #include "gpu/command_buffer/common/gles2_cmd_format.h" |
13 | 13 |
14 namespace gpu { | 14 namespace gpu { |
15 namespace gles2 { | 15 namespace gles2 { |
16 | 16 |
17 class GLES2Implementation; | 17 class GLES2Implementation; |
18 class GLES2ImplementationTest; | 18 class GLES2ImplementationTest; |
19 class ProgramInfoManager; | 19 class ProgramInfoManager; |
20 | 20 |
21 typedef void (GLES2Implementation::*DeleteFn)(GLsizei n, const GLuint* ids); | 21 typedef void (GLES2Implementation::*DeleteFn)(GLsizei n, const GLuint* ids); |
22 | 22 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 | 86 |
87 GLES2Implementation* gles2_; | 87 GLES2Implementation* gles2_; |
88 | 88 |
89 DISALLOW_COPY_AND_ASSIGN(ShareGroup); | 89 DISALLOW_COPY_AND_ASSIGN(ShareGroup); |
90 }; | 90 }; |
91 | 91 |
92 } // namespace gles2 | 92 } // namespace gles2 |
93 } // namespace gpu | 93 } // namespace gpu |
94 | 94 |
95 #endif // GPU_COMMAND_BUFFER_CLIENT_SHARE_GROUP_H_ | 95 #endif // GPU_COMMAND_BUFFER_CLIENT_SHARE_GROUP_H_ |
OLD | NEW |