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_SERVICE_CONTEXT_GROUP_H_ | 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_CONTEXT_GROUP_H_ |
6 #define GPU_COMMAND_BUFFER_SERVICE_CONTEXT_GROUP_H_ | 6 #define GPU_COMMAND_BUFFER_SERVICE_CONTEXT_GROUP_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
(...skipping 290 matching lines...) Loading... |
301 base::hash_map<GLuint, GLuint> transformfeedbacks_id_map_; | 301 base::hash_map<GLuint, GLuint> transformfeedbacks_id_map_; |
302 base::hash_map<GLuint, GLsync> syncs_id_map_; | 302 base::hash_map<GLuint, GLsync> syncs_id_map_; |
303 | 303 |
304 DISALLOW_COPY_AND_ASSIGN(ContextGroup); | 304 DISALLOW_COPY_AND_ASSIGN(ContextGroup); |
305 }; | 305 }; |
306 | 306 |
307 } // namespace gles2 | 307 } // namespace gles2 |
308 } // namespace gpu | 308 } // namespace gpu |
309 | 309 |
310 #endif // GPU_COMMAND_BUFFER_SERVICE_CONTEXT_GROUP_H_ | 310 #endif // GPU_COMMAND_BUFFER_SERVICE_CONTEXT_GROUP_H_ |
311 | |
312 | |
OLD | NEW |