Home
last modified time | relevance | path

Searched refs:maxMipLevels (Results 1 – 20 of 20) sorted by relevance

/external/mesa3d/src/intel/vulkan/
Danv_formats.c466 uint32_t maxMipLevels; in anv_GetPhysicalDeviceImageFormatProperties() local
494 maxMipLevels = 15; /* log2(maxWidth) + 1 */ in anv_GetPhysicalDeviceImageFormatProperties()
505 maxMipLevels = 15; /* log2(maxWidth) + 1 */ in anv_GetPhysicalDeviceImageFormatProperties()
512 maxMipLevels = 12; /* log2(maxWidth) + 1 */ in anv_GetPhysicalDeviceImageFormatProperties()
583 .maxMipLevels = maxMipLevels, in anv_GetPhysicalDeviceImageFormatProperties()
598 .maxMipLevels = 0, in anv_GetPhysicalDeviceImageFormatProperties()
/external/mesa3d/src/amd/vulkan/
Dradv_formats.c970 uint32_t maxMipLevels; in radv_GetPhysicalDeviceImageFormatProperties() local
994 maxMipLevels = 15; /* log2(maxWidth) + 1 */ in radv_GetPhysicalDeviceImageFormatProperties()
1001 maxMipLevels = 15; /* log2(maxWidth) + 1 */ in radv_GetPhysicalDeviceImageFormatProperties()
1008 maxMipLevels = 12; /* log2(maxWidth) + 1 */ in radv_GetPhysicalDeviceImageFormatProperties()
1048 .maxMipLevels = maxMipLevels, in radv_GetPhysicalDeviceImageFormatProperties()
1062 .maxMipLevels = 0, in radv_GetPhysicalDeviceImageFormatProperties()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleTestsUtil.cpp371 …t<deUint32>(deFloatLog2(static_cast<float>(widestEdge))) + 1u, imageFormatProperties.maxMipLevels); in getImageMaxMipLevels()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiImageClearingTests.cpp140 deUint32 getNumMipLevels (const VkExtent3D& baseExtent, const deUint32 maxMipLevels) in getNumMipLevels() argument
143 …rn std::min(static_cast<deUint32>(deFloatLog2(static_cast<float>(widestEdge))) + 1u, maxMipLevels); in getNumMipLevels()
546 …useSingleMipLevel ? 1u : getNumMipLevels(params.imageExtent, m_imageFormatProperties.maxMipLevels)) in ImageClearingTestInstance()
DvktApiFeatureInfo.cpp2336 …results.check(properties.maxMipLevels == fullMipPyramidSize, "maxMipLevels is not full mip pyramid… in imageFormatProperties()
2342 …results.check(properties.maxMipLevels == 1 || properties.maxMipLevels == fullMipPyramidSize, "Inva… in imageFormatProperties()
2360 results.check(properties.maxMipLevels == 0, "maxMipLevels != 0"); in imageFormatProperties()
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryRequirementsTests.cpp1022 if (info.mipLevels > imageFormatProperties.maxMipLevels) in isImageSupported()
1611 if (info.mipLevels > imageFormatProperties.maxMipLevels) in isMultiplaneImageSupported()
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesTestsUtil.cpp754 …t<deUint32>(deFloatLog2(static_cast<float>(widestEdge))) + 1u, imageFormatProperties.maxMipLevels); in getImageMaxMipLevels()
/external/vulkan-validation-layers/layers/
Dimage.cpp356 if (pCreateInfo->mipLevels > ImageFormatProperties.maxMipLevels) { in CreateImage()
360 ImageFormatProperties.maxMipLevels); in CreateImage()
Dvk_validation_error_database.txt2080 …n3D, mipLevels must be less than or equal to VkImageFormatProperties::maxMipLevels (as returned by…
/external/vulkan-validation-layers/libs/vkjson/
Dvkjson.cc69 visitor->Visit("maxMipLevels", &properties->maxMipLevels) && in Iterate()
/external/deqp/external/vulkancts/framework/vulkan/
DvkNullDriver.cpp869 pImageFormatProperties->maxMipLevels = deLog2Ceil32(4096) + 1; in getPhysicalDeviceImageFormatProperties()
DvkStructTypes.inl113 deUint32 maxMipLevels; member
DvkStrUtilImpl.inl1965 s << "\tmaxMipLevels = " << value.maxMipLevels << '\n';
/external/deqp/external/vulkancts/modules/vulkan/texture/
DvktTextureTestUtil.cpp334 if (imageFormatProperties.maxMipLevels < mipLevels) in updateTextureData()
/external/vulkan-validation-layers/include/vulkan/
Dvulkan.h1279 uint32_t maxMipLevels; member
Dvulkan.hpp12705 && ( maxMipLevels == rhs.maxMipLevels ) in operator ==()
12717 uint32_t maxMipLevels; member
/external/mesa3d/include/vulkan/
Dvulkan.h1288 uint32_t maxMipLevels; member
/external/skia/third_party/vulkan/vulkan/
Dvulkan.h1385 uint32_t maxMipLevels; member
/external/deqp/external/vulkancts/scripts/src/
Dvulkan.h.in1444 uint32_t maxMipLevels; member
/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp13968 image_create_info.mipLevels = imgFmtProps.maxMipLevels + 1; in TEST_F()