Home
last modified time | relevance | path

Searched refs:mBlock (Results 1 – 5 of 5) sorted by relevance

/hardware/google/gfxstream/host/vulkan/emulated_textures/
DCompressedImageInfo.cpp239 mBlock(getBlockSize(mCompressedFormat)), in CompressedImageInfo()
447 mAstcTexture = std::make_unique<AstcTexture>(vk, mDevice, physicalDevice, mExtent, mBlock.width, in initAstcCpuDecompression()
448 mBlock.height, &AstcCpuDecompressor::get()); in initAstcCpuDecompression()
541 region.bufferRowLength /= mBlock.width; in getBufferImageCopy()
542 region.bufferImageHeight /= mBlock.height; in getBufferImageCopy()
543 region.imageOffset.x /= mBlock.width; in getBufferImageCopy()
544 region.imageOffset.y /= mBlock.height; in getBufferImageCopy()
554 region.bufferRowLength /= mBlock.width; in getBufferImageCopy()
555 region.bufferImageHeight /= mBlock.height; in getBufferImageCopy()
556 region.imageOffset.x /= mBlock.width; in getBufferImageCopy()
[all …]
DCompressedImageInfo.h160 VkExtent2D mBlock = {1, 1}; // Size of the compressed blocks variable
/hardware/google/gfxstream/guest/android-emu/aemu/base/
DPool.cpp226 mBlock(allocSize, chunksPerSize) { in Heap()
230 return mBlock.getInterval(); in getInterval()
234 return mBlock.isFull(); in isFull()
238 return mBlock.alloc(); in alloc()
242 mBlock.free(ptr); in free()
246 mBlock.freeAll(); in freeAll()
251 Block mBlock; member in gfxstream::guest::Heap
/hardware/google/gfxstream/guest/vulkan_enc/
DHostVisibleMemoryVirtualization.h65 GoldfishAddressSpaceBlockPtr mBlock = nullptr; variable
DHostVisibleMemoryVirtualization.cpp44 : mSize(size), mBlock(block), mDevice(device), mMemory(memory) { in CoherentMemory()