HomeSort by relevance Sort by last modified time
    Searched refs:ProgramCache (Results 1 - 25 of 30) sorted by null

1 2

  /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 202 EXPECT_EQ(ProgramCache::LINK_SUCCEEDED, cache_->GetLinkedProgramStatus(
227 EXPECT_EQ(ProgramCache::LINK_SUCCEEDED, cache_->GetLinkedProgramStatus(
238 EXPECT_EQ(ProgramCache::LINK_SUCCEEDED, cache_->GetLinkedProgramStatus(
275 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_SUCCESS, cache_->LoadLinkedProgram(
327 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_SUCCESS, cache_->LoadLinkedProgram(
364 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_FAILURE, cache_->LoadLinkedProgram(
395 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_FAILURE, cache_->LoadLinkedProgram(
409 EXPECT_EQ(ProgramCache::PROGRAM_LOAD_FAILURE, cache_->LoadLinkedProgram(
431 ProgramCache::LocationMap binding_map;
443 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_;
program_manager.h 24 class ProgramCache;
323 explicit ProgramManager(ProgramCache* program_cache);
339 ProgramCache* program_cache() const;
387 ProgramCache* program_cache_;
mocks.h 98 class MockProgramCache : public ProgramCache {
memory_program_cache.h 23 class GPU_EXPORT MemoryProgramCache : public ProgramCache {
memory_program_cache.cc 73 proto->set_sha(sha, gpu::gles2::ProgramCache::kHashLength);
110 ProgramCache::ProgramLoadResult MemoryProgramCache::LoadLinkedProgram(
190 UMA_HISTOGRAM_COUNTS("GPU.ProgramCache.ProgramBinarySizeBytes", length);
208 UMA_HISTOGRAM_COUNTS("GPU.ProgramCache.MemorySizeBeforeKb",
249 UMA_HISTOGRAM_COUNTS("GPU.ProgramCache.MemorySizeAfterKb",
296 UMA_HISTOGRAM_COUNTS("GPU.ProgramCache.MemorySizeAfterKb",
program_manager.cc 518 ProgramCache* cache = manager_->program_cache_;
522 ProgramCache::LinkedProgramStatus status = cache->GetLinkedProgramStatus(
529 if (status == ProgramCache::LINK_SUCCEEDED) {
530 ProgramCache::ProgramLoadResult success =
538 link = success != ProgramCache::PROGRAM_LOAD_SUCCESS;
539 UMA_HISTOGRAM_BOOLEAN("GPU.ProgramCache.LoadBinarySuccess", !link);
569 "GPU.ProgramCache.BinaryCacheMissTime",
576 "GPU.ProgramCache.BinaryCacheHitTime",
    [all...]
  /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;
  /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/content/common/gpu/
gpu_channel_manager.h 35 class ProgramCache;
90 gpu::gles2::ProgramCache* program_cache();
147 scoped_ptr<gpu::gles2::ProgramCache> program_cache_;
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL_program.cpp 17 struct GrGpuGL::ProgramCache::Entry {
25 SK_DEFINE_INST_COUNT(GrGpuGL::ProgramCache::Entry);
27 struct GrGpuGL::ProgramCache::ProgDescLess {
39 GrGpuGL::ProgramCache::ProgramCache(const GrGLContext& gl)
54 GrGpuGL::ProgramCache::~ProgramCache() {
72 void GrGpuGL::ProgramCache::abandon() {
81 int GrGpuGL::ProgramCache::search(const GrGLProgramDesc& desc) const {
86 GrGLProgram* GrGpuGL::ProgramCache::getProgram(const GrGLProgramDesc& desc
    [all...]
GrGpuGL.h 172 class ProgramCache : public ::GrNoncopyable {
174 ProgramCache(const GrGLContext& gl);
175 ~ProgramCache();
261 ProgramCache* fProgramCache;
  /external/skia/src/gpu/gl/
GrGpuGL_program.cpp 17 struct GrGpuGL::ProgramCache::Entry {
25 SK_DEFINE_INST_COUNT(GrGpuGL::ProgramCache::Entry);
27 struct GrGpuGL::ProgramCache::ProgDescLess {
39 GrGpuGL::ProgramCache::ProgramCache(const GrGLContext& gl)
54 GrGpuGL::ProgramCache::~ProgramCache() {
72 void GrGpuGL::ProgramCache::abandon() {
81 int GrGpuGL::ProgramCache::search(const GrGLProgramDesc& desc) const {
86 GrGLProgram* GrGpuGL::ProgramCache::getProgram(const GrGLProgramDesc& desc
    [all...]
GrGpuGL.h 172 class ProgramCache : public ::GrNoncopyable {
174 ProgramCache(const GrGLContext& gl);
175 ~ProgramCache();
261 ProgramCache* fProgramCache;
  /frameworks/native/services/surfaceflinger/
Android.mk 28 RenderEngine/ProgramCache.cpp \

Completed in 241 milliseconds

1 2