Searched refs:mMemoryProgramCache (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/external/angle/src/libANGLE/ |
H A D | Display.cpp | 946 mMemoryProgramCache(mBlobCache), in Display() 1324 mMemoryProgramCache.clear(); in terminate() 1629 gl::MemoryProgramCache *programCachePointer = &mMemoryProgramCache; in createContext() 1639 if (!programCacheControlEnabled || mMemoryProgramCache.maxSize() == 0) in createContext() 2447 return static_cast<EGLint>(mMemoryProgramCache.entryCount()); in programCacheGetAttrib() 2461 ASSERT(index >= 0 && index < static_cast<EGLint>(mMemoryProgramCache.entryCount())); in programCacheQuery() 2467 mMemoryProgramCache.getAt(static_cast<size_t>(index), &programHash, &programBinary); in programCacheQuery() 2510 if (!mMemoryProgramCache.putBinary(programHash, reinterpret_cast<const uint8_t *>(binary), in programCachePopulate() 2525 size_t initialSize = mMemoryProgramCache.size(); in programCacheResize() 2526 mMemoryProgramCache.resize(static_cast<size_t>(limit)); in programCacheResize() [all …]
|
H A D | Context.h | 644 MemoryProgramCache *getMemoryProgramCache() const { return mMemoryProgramCache; } in getMemoryProgramCache() 953 MemoryProgramCache *mMemoryProgramCache; variable
|
H A D | Display.h | 423 gl::MemoryProgramCache mMemoryProgramCache; variable
|
H A D | Context.cpp | 632 mMemoryProgramCache(memoryProgramCache), in Context() 700 mImplementation->setMemoryProgramCache(mMemoryProgramCache); in initializeDefaultResources() 4373 mMemoryProgramCache = nullptr; in initCaps() 4531 mMemoryProgramCache = nullptr; in updateCaps()
|
/aosp_15_r20/external/angle/src/libANGLE/renderer/ |
H A D | ContextImpl.cpp | 18 : mState(state), mMemoryProgramCache(nullptr), mErrors(errorSet) in ContextImpl() 54 mMemoryProgramCache = memoryProgramCache; in setMemoryProgramCache()
|
H A D | ContextImpl.h | 286 gl::MemoryProgramCache *mMemoryProgramCache; variable
|
/aosp_15_r20/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
H A D | Context11.cpp | 1036 if (mMemoryProgramCache && IsSameExecutable(&program->getExecutable(), executable)) in triggerDrawCallProgramRecompilation() 1038 ANGLE_TRY(mMemoryProgramCache->updateProgram(context, program)); in triggerDrawCallProgramRecompilation() 1076 if (mMemoryProgramCache && IsSameExecutable(&program->getExecutable(), executable)) in triggerDispatchCallProgramRecompilation() 1078 ANGLE_TRY(mMemoryProgramCache->updateProgram(context, program)); in triggerDispatchCallProgramRecompilation()
|