OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mipExtent
(Results
1 - 5
of
5
) sorted by null
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesImageSparseResidency.cpp
321
const VkExtent3D
mipExtent
= mipLevelExtents(imageCreateInfo.extent, mipLevelNdx);
322
const tcu::UVec3 numSparseBinds = alignedDivide(
mipExtent
, imageGranularity);
323
const tcu::UVec3 lastBlockExtent = tcu::UVec3(
mipExtent
.width % imageGranularity.width ?
mipExtent
.width % imageGranularity.width : imageGranularity.width,
324
mipExtent
.height % imageGranularity.height ?
mipExtent
.height % imageGranularity.height : imageGranularity.height,
325
mipExtent
.depth % imageGranularity.depth ?
mipExtent
.depth % imageGranularity.depth : imageGranularity.depth);
599
const VkExtent3D
mipExtent
= mipLevelExtents(imageCreateInfo.extent, 0u);
600
const tcu::UVec3 numSparseBinds = alignedDivide(
mipExtent
, imageGranularity)
[
all
...]
vktSparseResourcesImageMemoryAliasing.cpp
316
const VkExtent3D
mipExtent
= mipLevelExtents(imageSparseInfo.extent, mipLevelNdx);
317
const tcu::UVec3 sparseBlocks = alignedDivide(
mipExtent
, imageGranularity);
322
imageMemoryRequirements.alignment * numSparseBlocks, memoryType, subresource, makeOffset3D(0u, 0u, 0u),
mipExtent
);
[
all
...]
vktSparseResourcesMipmapSparseResidency.cpp
256
const VkExtent3D
mipExtent
= mipLevelExtents(imageSparseInfo.extent, mipLevelNdx);
257
const tcu::UVec3 sparseBlocks = alignedDivide(
mipExtent
, imageGranularity);
262
imageMemoryRequirements.alignment * numSparseBlocks, memoryType, subresource, makeOffset3D(0u, 0u, 0u),
mipExtent
);
vktSparseResourcesShaderIntrinsicsBase.cpp
346
const VkExtent3D
mipExtent
= mipLevelExtents(imageSparseInfo.extent, mipLevelNdx);
347
const tcu::UVec3 sparseBlocks = alignedDivide(
mipExtent
, imageGranularity);
352
imageMemoryRequirements.alignment * numSparseBlocks, memoryType, subresource, makeOffset3D(0u, 0u, 0u),
mipExtent
);
/external/deqp/external/vulkancts/framework/vulkan/
vkImageUtil.cpp
[
all
...]
Completed in 327 milliseconds