OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:widestEdge
(Results
1 - 4
of
4
) sorted by null
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMultisampleTestsUtil.cpp
358
const deUint32
widestEdge
= std::max(std::max(extent.width, extent.height), extent.depth);
360
return std::min(static_cast<deUint32>(deFloatLog2(static_cast<float>(
widestEdge
))) + 1u, imageFormatProperties.maxMipLevels);
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesImageMemoryAliasing.cpp
676
const deUint32
widestEdge
= std::max(std::max(layerSize.x(), layerSize.y()), layerSize.z());
677
const deUint32 mipLevels = static_cast<deUint32>(deFloatLog2(static_cast<float>(
widestEdge
))) + 1u;
[
all
...]
vktSparseResourcesTestsUtil.cpp
658
const deUint32
widestEdge
= std::max(std::max(extent.width, extent.height), extent.depth);
660
return std::min(static_cast<deUint32>(deFloatLog2(static_cast<float>(
widestEdge
))) + 1u, imageFormatProperties.maxMipLevels);
/external/deqp/external/vulkancts/modules/vulkan/api/
vktApiImageClearingTests.cpp
144
const deUint32
widestEdge
= std::max(std::max(baseExtent.width, baseExtent.height), baseExtent.depth);
145
return std::min(static_cast<deUint32>(deFloatLog2(static_cast<float>(
widestEdge
))) + 1u, maxMipLevels);
[
all
...]
Completed in 1011 milliseconds