Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
DvktImageTestsUtil.cpp470 deUint32 blockBytes = getBlockSizeInBytes(format); in getCompressedImageSizeInBytes() local
471 VkDeviceSize sizeBytes = sizeInBlocks[0] * sizeInBlocks[1] * sizeInBlocks[2] * blockBytes; in getCompressedImageSizeInBytes()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp470 deUint32 blockBytes = getBlockSizeInBytes(format); in getCompressedImageSizeInBytes() local
471 VkDeviceSize sizeBytes = sizeInBlocks[0] * sizeInBlocks[1] * sizeInBlocks[2] * blockBytes; in getCompressedImageSizeInBytes()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fNegativeTextureApiTests.cpp515 const size_t blockBytes = getBlockSize(tcuFormat); in init()
516 const vector<deUint8> unusedData (blockBytes); in init()
518 …2D(GL_TEXTURE_2D, 0, format, blockPixels.x(), blockPixels.y(), 0, (int)blockBytes, &unusedData[0]); in init()
524 … const size_t blockBytes = getBlockSize(tcuFormat) * cubeSize; // We have a x * y grid of blocks in init()
525 const vector<deUint8> unusedData (blockBytes); in init()
527 … glCompressedTexImage2D(faceGL, 0, format, cubeSize, cubeSize, 0, (int)blockBytes, &unusedData[0]); in init()
2716 const size_t blockBytes = getBlockSize(tcuFormat); in init()
2717 const vector<deUint8> unusedData (blockBytes); in init()
2719 … 0, format, blockPixels.x(), blockPixels.y(), blockPixels.z(), 0, (int)blockBytes, &unusedData[0]); in init()
/third_party/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h2480 VkDeviceSize blockBytes; member
16549 outBudget->blockBytes = m_Budget.m_BlockBytes[heapIndex]; in GetBudget()
16552 …if(m_Budget.m_VulkanUsage[heapIndex] + outBudget->blockBytes > m_Budget.m_BlockBytesAtBudgetFetch[… in GetBudget()
16555 outBudget->blockBytes - m_Budget.m_BlockBytesAtBudgetFetch[heapIndex]; in GetBudget()
16580 outBudget->blockBytes = m_Budget.m_BlockBytes[heapIndex]; in GetBudget()
16583 outBudget->usage = outBudget->blockBytes; in GetBudget()
16916 VkDeviceSize blockBytes = m_Budget.m_BlockBytes[heapIndex]; in AllocateVulkanMemory() local
16919 … const VkDeviceSize blockBytesAfterAllocation = blockBytes + pAllocateInfo->allocationSize; in AllocateVulkanMemory()
16924 …if(m_Budget.m_BlockBytes[heapIndex].compare_exchange_strong(blockBytes, blockBytesAfterAllocation)) in AllocateVulkanMemory()
17639 json.WriteNumber(budget[heapIndex].blockBytes); in vmaBuildStatsString()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkImageUtil.cpp3579 deUint32 blockBytes; member
3739 return compressedFormatParameters[formatNdx].blockBytes; in getBlockSizeInBytes()