Home
last modified time | relevance | path

Searched refs:ComputeProgramKey (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/swiftshader/src/Vulkan/
H A DVkPipelineCache.hpp89 struct ComputeProgramKey struct in vk::PipelineCache
91 ComputeProgramKey(uint64_t shaderIdentifier, uint32_t pipelineLayoutIdentifier);
93 bool operator<(const ComputeProgramKey &other) const;
107 …<sw::ComputeProgram> getOrCreateComputeProgram(const PipelineCache::ComputeProgramKey &key, Functi…
126 …std::map<ComputeProgramKey, std::shared_ptr<sw::ComputeProgram>> computePrograms GUARDED_BY(comput…
135 …gram> PipelineCache::getOrCreateComputeProgram(const PipelineCache::ComputeProgramKey &key, Functi… in getOrCreateComputeProgram()
H A DVkPipelineCache.cpp58 PipelineCache::ComputeProgramKey::ComputeProgramKey(uint64_t shaderIdentifier, uint32_t pipelineLay… in ComputeProgramKey() function in vk::PipelineCache::ComputeProgramKey
63 bool PipelineCache::ComputeProgramKey::operator<(const ComputeProgramKey &other) const in operator <()
H A DVkPipeline.cpp689 const PipelineCache::ComputeProgramKey programKey(shader->getIdentifier(), layout->identifier); in compileShaders()