/external/chromium_org/gpu/command_buffer/service/ |
program_cache_unittest.cc | 16 class NoBackendProgramCache : public ProgramCache { 64 ProgramCache::ComputeShaderHash(shader, translator, result); 71 ProgramCache::ComputeProgramHash(hashed_shader_0, 78 ProgramCache::Evict(program_hash); 97 EXPECT_EQ(ProgramCache::LINK_UNKNOWN, 106 EXPECT_EQ(ProgramCache::LINK_SUCCEEDED, 117 EXPECT_EQ(ProgramCache::LINK_UNKNOWN, 127 EXPECT_EQ(ProgramCache::LINK_UNKNOWN, 135 char a_sha[ProgramCache::kHashLength]; 136 char b_sha[ProgramCache::kHashLength] [all...] |
program_cache.cc | 14 ProgramCache::ProgramCache() {} 15 ProgramCache::~ProgramCache() {} 17 void ProgramCache::Clear() { 22 ProgramCache::LinkedProgramStatus ProgramCache::GetLinkedProgramStatus( 42 return ProgramCache::LINK_UNKNOWN; 48 void ProgramCache::LinkedProgramCacheSuccess( 68 void ProgramCache::LinkedProgramCacheSuccess(const std::string& program_hash) [all...] |
program_cache.h | 24 class GPU_EXPORT ProgramCache { 40 ProgramCache(); 41 virtual ~ProgramCache(); 112 DISALLOW_COPY_AND_ASSIGN(ProgramCache);
|
memory_program_cache_unittest.cc | 210 EXPECT_EQ(ProgramCache::LINK_SUCCEEDED, cache_->GetLinkedProgramStatus( 235 EXPECT_EQ(ProgramCache::LINK_SUCCEEDED, cache_->GetLinkedProgramStatus( 246 EXPECT_EQ(ProgramCache::LINK_SUCCEEDED, cache_->GetLinkedProgramStatus( 287 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_SUCCESS, cache_->LoadLinkedProgram( 345 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_SUCCESS, cache_->LoadLinkedProgram( 384 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_FAILURE, cache_->LoadLinkedProgram( 415 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_FAILURE, cache_->LoadLinkedProgram( 429 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_FAILURE, cache_->LoadLinkedProgram( 451 ProgramCache::LocationMap binding_map; 463 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_FAILURE, cache_->LoadLinkedProgram [all...] |
context_group.h | 29 class ProgramCache; 148 void set_program_cache(ProgramCache* program_cache) { 204 ProgramCache* program_cache_;
|
memory_program_cache.cc | 85 proto->set_sha(sha, gpu::gles2::ProgramCache::kHashLength); 123 ProgramCache::ProgramLoadResult MemoryProgramCache::LoadLinkedProgram( 205 UMA_HISTOGRAM_COUNTS("GPU.ProgramCache.ProgramBinarySizeBytes", length); 223 UMA_HISTOGRAM_COUNTS("GPU.ProgramCache.MemorySizeBeforeKb", 266 UMA_HISTOGRAM_COUNTS("GPU.ProgramCache.MemorySizeAfterKb", 326 UMA_HISTOGRAM_COUNTS("GPU.ProgramCache.MemorySizeAfterKb",
|
program_manager.h | 23 class ProgramCache; 348 explicit ProgramManager(ProgramCache* program_cache, 365 ProgramCache* program_cache() const; 419 ProgramCache* program_cache_;
|
memory_program_cache.h | 23 class GPU_EXPORT MemoryProgramCache : public ProgramCache {
|
mocks.h | 99 class MockProgramCache : public ProgramCache {
|
/frameworks/base/libs/hwui/ |
ProgramCache.h | 41 class ProgramCache { 43 ProgramCache(); 44 ~ProgramCache(); 62 }; // class ProgramCache
|
ProgramCache.cpp | 23 #include "ProgramCache.h" 393 ProgramCache::ProgramCache(): mHasES3(Extensions::getInstance().getMajorGlVersion() >= 3) { 396 ProgramCache::~ProgramCache() { 404 void ProgramCache::clear() { 414 Program* ProgramCache::get(const ProgramDescription& description) { 438 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) { 449 String8 ProgramCache::generateVertexShader(const ProgramDescription& description) { 527 String8 ProgramCache::generateFragmentShader(const ProgramDescription& description) [all...] |
Android.mk | 37 ProgramCache.cpp \
|
Caches.h | 43 #include "ProgramCache.h" 330 ProgramCache programCache;
|
SkiaColorFilter.h | 25 #include "ProgramCache.h"
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
ProgramCache.h | 40 class ProgramCache : public Singleton<ProgramCache> { 47 friend class ProgramCache; 107 ProgramCache(); 108 ~ProgramCache(); 130 ANDROID_BASIC_TYPES_TRAITS(ProgramCache::Key)
|
ProgramCache.cpp | 22 #include "ProgramCache.h" 78 ANDROID_SINGLETON_STATIC_INSTANCE(ProgramCache) 81 ProgramCache::ProgramCache() { 84 ProgramCache::~ProgramCache() { 87 ProgramCache::Key ProgramCache::computeKey(const Description& description) { 105 String8 ProgramCache::generateVertexShader(const Key& needs) { 123 String8 ProgramCache::generateFragmentShader(const Key& needs) [all...] |
Description.h | 32 * Program and ProgramCache are friends and access the state directly 36 friend class ProgramCache;
|
Program.h | 25 #include "ProgramCache.h" 39 Program(const ProgramCache::Key& needs, const char* vertex, const char* fragment);
|
Program.cpp | 22 #include "ProgramCache.h" 28 Program::Program(const ProgramCache::Key& needs, const char* vertex, const char* fragment)
|
/external/chromium_org/third_party/skia/src/gpu/gl/ |
GrGpuGL_program.cpp | 22 struct GrGpuGL::ProgramCache::Entry { 30 struct GrGpuGL::ProgramCache::ProgDescLess { 42 GrGpuGL::ProgramCache::ProgramCache(GrGpuGL* gpu) 57 GrGpuGL::ProgramCache::~ProgramCache() { 77 void GrGpuGL::ProgramCache::abandon() { 86 int GrGpuGL::ProgramCache::search(const GrGLProgramDesc& desc) const { 91 GrGLProgram* GrGpuGL::ProgramCache::getProgram(const GrGLProgramDesc& desc,
|
GrGpuGL.h | 184 class ProgramCache : public ::SkNoncopyable { 186 ProgramCache(GrGpuGL* gpu); 187 ~ProgramCache(); 269 ProgramCache* fProgramCache;
|
/external/skia/src/gpu/gl/ |
GrGpuGL_program.cpp | 22 struct GrGpuGL::ProgramCache::Entry { 30 struct GrGpuGL::ProgramCache::ProgDescLess { 42 GrGpuGL::ProgramCache::ProgramCache(GrGpuGL* gpu) 57 GrGpuGL::ProgramCache::~ProgramCache() { 77 void GrGpuGL::ProgramCache::abandon() { 86 int GrGpuGL::ProgramCache::search(const GrGLProgramDesc& desc) const { 91 GrGLProgram* GrGpuGL::ProgramCache::getProgram(const GrGLProgramDesc& desc,
|
GrGpuGL.h | 184 class ProgramCache : public ::SkNoncopyable { 186 ProgramCache(GrGpuGL* gpu); 187 ~ProgramCache(); 269 ProgramCache* fProgramCache;
|
/external/chromium_org/content/common/gpu/ |
gpu_channel_manager.h | 36 class ProgramCache; 91 gpu::gles2::ProgramCache* program_cache(); 153 scoped_ptr<gpu::gles2::ProgramCache> program_cache_;
|
/frameworks/native/services/surfaceflinger/ |
Android.mk | 28 RenderEngine/ProgramCache.cpp \
|