| 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 | |
| 10 #include "base/containers/hash_tables.h" | 8 #include "base/containers/hash_tables.h" |
| 11 #include "base/macros.h" | 9 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 13 #include "gpu/gpu_export.h" | 11 #include "gpu/gpu_export.h" |
| 14 | 12 |
| 15 namespace gpu { | 13 namespace gpu { |
| 16 namespace gles2 { | 14 namespace gles2 { |
| 17 | 15 |
| 18 // Refcounted wrapper for a hash_set of framebuffer format signatures | 16 // Refcounted wrapper for a hash_set of framebuffer format signatures |
| 19 // representing framebuffer configurations that are reported by the GL | 17 // representing framebuffer configurations that are reported by the GL |
| (...skipping 16 matching lines...) Expand all Loading... |
| 36 | 34 |
| 37 Map cache_; | 35 Map cache_; |
| 38 | 36 |
| 39 DISALLOW_COPY_AND_ASSIGN(FramebufferCompletenessCache); | 37 DISALLOW_COPY_AND_ASSIGN(FramebufferCompletenessCache); |
| 40 }; | 38 }; |
| 41 | 39 |
| 42 } // namespace gles2 | 40 } // namespace gles2 |
| 43 } // namespace gpu | 41 } // namespace gpu |
| 44 | 42 |
| 45 #endif // GPU_COMMAND_BUFFER_SERVICE_FRAMEBUFFER_COMPLETENESS_CACHE_H_ | 43 #endif // GPU_COMMAND_BUFFER_SERVICE_FRAMEBUFFER_COMPLETENESS_CACHE_H_ |
| OLD | NEW |