• Home
  • Raw
  • Download

Lines Matching refs:mBlock

239       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()
557 region.imageOffset.y /= mBlock.height; in getBufferImageCopy()
572 region.srcOffset.x /= srcImg.mBlock.width; in getCompressedMipmapsImageCopy()
573 region.srcOffset.y /= srcImg.mBlock.height; in getCompressedMipmapsImageCopy()
578 region.dstOffset.x /= dstImg.mBlock.width; in getCompressedMipmapsImageCopy()
579 region.dstOffset.y /= dstImg.mBlock.height; in getCompressedMipmapsImageCopy()
593 region.srcOffset.x /= srcImg.mBlock.width; in getCompressedMipmapsImageCopy()
594 region.srcOffset.y /= srcImg.mBlock.height; in getCompressedMipmapsImageCopy()
599 region.dstOffset.x /= dstImg.mBlock.width; in getCompressedMipmapsImageCopy()
600 region.dstOffset.y /= dstImg.mBlock.height; in getCompressedMipmapsImageCopy()
767 .blockSize = {mBlock.width, mBlock.height}, in decompress()
795 result.width = ceil_div(result.width, mBlock.width); in compressedMipmapExtent()
796 result.height = ceil_div(result.height, mBlock.height); in compressedMipmapExtent()
804 .width = std::min(ceil_div(origExtent.width, mBlock.width), maxExtent.width), in compressedMipmapPortion()
805 .height = std::min(ceil_div(origExtent.height, mBlock.height), maxExtent.height), in compressedMipmapPortion()