OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_FRAMEBUFFER_COMPLETENESS_CACHE_H_ | 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_FRAMEBUFFER_COMPLETENESS_CACHE_H_ |
6 #define GPU_COMMAND_BUFFER_SERVICE_FRAMEBUFFER_COMPLETENESS_CACHE_H_ | 6 #define GPU_COMMAND_BUFFER_SERVICE_FRAMEBUFFER_COMPLETENESS_CACHE_H_ |
7 | 7 |
| 8 #include <string> |
| 9 |
8 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
9 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
10 #include "gpu/gpu_export.h" | 12 #include "gpu/gpu_export.h" |
11 | 13 |
12 namespace gpu { | 14 namespace gpu { |
13 namespace gles2 { | 15 namespace gles2 { |
14 | 16 |
15 // Refcounted wrapper for a hash_set of framebuffer format signatures | 17 // Refcounted wrapper for a hash_set of framebuffer format signatures |
16 // representing framebuffer configurations that are reported by the GL | 18 // representing framebuffer configurations that are reported by the GL |
17 // driver as complete according to glCheckFramebufferStatusEXT. | 19 // driver as complete according to glCheckFramebufferStatusEXT. |
(...skipping 15 matching lines...) Expand all Loading... |
33 | 35 |
34 Map cache_; | 36 Map cache_; |
35 | 37 |
36 DISALLOW_COPY_AND_ASSIGN(FramebufferCompletenessCache); | 38 DISALLOW_COPY_AND_ASSIGN(FramebufferCompletenessCache); |
37 }; | 39 }; |
38 | 40 |
39 } // namespace gles2 | 41 } // namespace gles2 |
40 } // namespace gpu | 42 } // namespace gpu |
41 | 43 |
42 #endif // GPU_COMMAND_BUFFER_SERVICE_FRAMEBUFFER_COMPLETENESS_CACHE_H_ | 44 #endif // GPU_COMMAND_BUFFER_SERVICE_FRAMEBUFFER_COMPLETENESS_CACHE_H_ |
OLD | NEW |