Home
last modified time | relevance | path

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

/hardware/google/gfxstream/host/vulkan/emulated_textures/
DGpuDecompressionPipeline.cpp30 static AstcDecoder activeAstcDecoder = AstcDecoder::NewRgb;
93 case AstcDecoder::Old: in getShaderGroup()
95 case AstcDecoder::NewRgb: in getShaderGroup()
97 case AstcDecoder::NewBc3: in getShaderGroup()
144 const char* string_AstcDecoder(AstcDecoder decoder) { in string_AstcDecoder()
146 case AstcDecoder::Old: in string_AstcDecoder()
148 case AstcDecoder::NewRgb: in string_AstcDecoder()
150 case AstcDecoder::NewBc3: in string_AstcDecoder()
230 void GpuDecompressionPipelineManager::setAstcDecoder(AstcDecoder value) { in setAstcDecoder()
233 AstcDecoder GpuDecompressionPipelineManager::astcDecoder() { return activeAstcDecoder; } in astcDecoder()
DGpuDecompressionPipeline.h87 enum class AstcDecoder{Old, NewRgb, NewBc3}; enum
96 static void setAstcDecoder(AstcDecoder value);
97 static AstcDecoder astcDecoder();
DCompressedImageInfo.cpp277 return GpuDecompressionPipelineManager::astcDecoder() == AstcDecoder::NewBc3 in getOutputFormat()
294 return GpuDecompressionPipelineManager::astcDecoder() == AstcDecoder::NewBc3 in getOutputFormat()
773 perPixel = GpuDecompressionPipelineManager::astcDecoder() != AstcDecoder::Old; in decompress()