| 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 <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/containers/hash_tables.h" | 11 #include "base/containers/hash_tables.h" |
| 12 #include "base/containers/mru_cache.h" | 12 #include "base/containers/mru_cache.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" | 15 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" |
| 16 #include "gpu/command_buffer/service/program_cache.h" | 16 #include "gpu/command_buffer/service/program_cache.h" |
| 17 #include "gpu/command_buffer/service/shader_translator.h" | 17 #include "gpu/command_buffer/service/shader_translator.h" |
| 18 | 18 |
| 19 namespace gpu { | 19 namespace gpu { |
| 20 namespace gles2 { | 20 namespace gles2 { |
| 21 | 21 |
| 22 // Program cache that stores binaries completely in-memory | 22 // Program cache that stores binaries completely in-memory |
| 23 class GPU_EXPORT MemoryProgramCache : public ProgramCache { | 23 class GPU_EXPORT MemoryProgramCache : public ProgramCache { |
| 24 public: | 24 public: |
| 25 MemoryProgramCache(); | 25 MemoryProgramCache(); |
| 26 explicit MemoryProgramCache(const size_t max_cache_size_bytes); | 26 explicit MemoryProgramCache(const size_t max_cache_size_bytes); |
| 27 virtual ~MemoryProgramCache(); | 27 ~MemoryProgramCache() override; |
| 28 | 28 |
| 29 virtual ProgramLoadResult LoadLinkedProgram( | 29 ProgramLoadResult LoadLinkedProgram( |
| 30 GLuint program, | 30 GLuint program, |
| 31 Shader* shader_a, | 31 Shader* shader_a, |
| 32 const ShaderTranslatorInterface* translator_a, | 32 const ShaderTranslatorInterface* translator_a, |
| 33 Shader* shader_b, | 33 Shader* shader_b, |
| 34 const ShaderTranslatorInterface* translator_b, | 34 const ShaderTranslatorInterface* translator_b, |
| 35 const LocationMap* bind_attrib_location_map, | 35 const LocationMap* bind_attrib_location_map, |
| 36 const ShaderCacheCallback& shader_callback) override; | 36 const ShaderCacheCallback& shader_callback) override; |
| 37 virtual void SaveLinkedProgram( | 37 void SaveLinkedProgram(GLuint program, |
| 38 GLuint program, | 38 const Shader* shader_a, |
| 39 const Shader* shader_a, | 39 const ShaderTranslatorInterface* translator_a, |
| 40 const ShaderTranslatorInterface* translator_a, | 40 const Shader* shader_b, |
| 41 const Shader* shader_b, | 41 const ShaderTranslatorInterface* translator_b, |
| 42 const ShaderTranslatorInterface* translator_b, | 42 const LocationMap* bind_attrib_location_map, |
| 43 const LocationMap* bind_attrib_location_map, | 43 const ShaderCacheCallback& shader_callback) override; |
| 44 const ShaderCacheCallback& shader_callback) override; | |
| 45 | 44 |
| 46 virtual void LoadProgram(const std::string& program) override; | 45 void LoadProgram(const std::string& program) override; |
| 47 | 46 |
| 48 private: | 47 private: |
| 49 virtual void ClearBackend() override; | 48 void ClearBackend() override; |
| 50 | 49 |
| 51 class ProgramCacheValue : public base::RefCounted<ProgramCacheValue> { | 50 class ProgramCacheValue : public base::RefCounted<ProgramCacheValue> { |
| 52 public: | 51 public: |
| 53 ProgramCacheValue(GLsizei length, | 52 ProgramCacheValue(GLsizei length, |
| 54 GLenum format, | 53 GLenum format, |
| 55 const char* data, | 54 const char* data, |
| 56 const std::string& program_hash, | 55 const std::string& program_hash, |
| 57 const char* shader_0_hash, | 56 const char* shader_0_hash, |
| 58 const AttributeMap& attrib_map_0, | 57 const AttributeMap& attrib_map_0, |
| 59 const UniformMap& uniform_map_0, | 58 const UniformMap& uniform_map_0, |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 size_t curr_size_bytes_; | 138 size_t curr_size_bytes_; |
| 140 ProgramMRUCache store_; | 139 ProgramMRUCache store_; |
| 141 | 140 |
| 142 DISALLOW_COPY_AND_ASSIGN(MemoryProgramCache); | 141 DISALLOW_COPY_AND_ASSIGN(MemoryProgramCache); |
| 143 }; | 142 }; |
| 144 | 143 |
| 145 } // namespace gles2 | 144 } // namespace gles2 |
| 146 } // namespace gpu | 145 } // namespace gpu |
| 147 | 146 |
| 148 #endif // GPU_COMMAND_BUFFER_SERVICE_MEMORY_PROGRAM_CACHE_H_ | 147 #endif // GPU_COMMAND_BUFFER_SERVICE_MEMORY_PROGRAM_CACHE_H_ |
| OLD | NEW |