| 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_MEMORY_PROGRAM_CACHE_H_ | 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_MEMORY_PROGRAM_CACHE_H_ |
| 6 #define GPU_COMMAND_BUFFER_SERVICE_MEMORY_PROGRAM_CACHE_H_ | 6 #define GPU_COMMAND_BUFFER_SERVICE_MEMORY_PROGRAM_CACHE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <string> | 11 #include <string> |
| 10 | 12 |
| 11 #include "base/containers/hash_tables.h" | 13 #include "base/containers/hash_tables.h" |
| 12 #include "base/containers/mru_cache.h" | 14 #include "base/containers/mru_cache.h" |
| 15 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
| 15 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" | 18 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" |
| 16 #include "gpu/command_buffer/service/program_cache.h" | 19 #include "gpu/command_buffer/service/program_cache.h" |
| 17 | 20 |
| 18 namespace gpu { | 21 namespace gpu { |
| 19 namespace gles2 { | 22 namespace gles2 { |
| 20 | 23 |
| 21 // Program cache that stores binaries completely in-memory | 24 // Program cache that stores binaries completely in-memory |
| 22 class GPU_EXPORT MemoryProgramCache : public ProgramCache { | 25 class GPU_EXPORT MemoryProgramCache : public ProgramCache { |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 size_t curr_size_bytes_; | 153 size_t curr_size_bytes_; |
| 151 ProgramMRUCache store_; | 154 ProgramMRUCache store_; |
| 152 | 155 |
| 153 DISALLOW_COPY_AND_ASSIGN(MemoryProgramCache); | 156 DISALLOW_COPY_AND_ASSIGN(MemoryProgramCache); |
| 154 }; | 157 }; |
| 155 | 158 |
| 156 } // namespace gles2 | 159 } // namespace gles2 |
| 157 } // namespace gpu | 160 } // namespace gpu |
| 158 | 161 |
| 159 #endif // GPU_COMMAND_BUFFER_SERVICE_MEMORY_PROGRAM_CACHE_H_ | 162 #endif // GPU_COMMAND_BUFFER_SERVICE_MEMORY_PROGRAM_CACHE_H_ |
| OLD | NEW |