/external/mesa3d/src/intel/vulkan/ |
D | anv_formats.c | 466 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/ |
D | radv_formats.c | 970 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/ |
D | vktPipelineMultisampleTestsUtil.cpp | 371 …t<deUint32>(deFloatLog2(static_cast<float>(widestEdge))) + 1u, imageFormatProperties.maxMipLevels); in getImageMaxMipLevels()
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiImageClearingTests.cpp | 141 deUint32 getNumMipLevels (const VkExtent3D& baseExtent, const deUint32 maxMipLevels) in getNumMipLevels() argument 144 …rn std::min(static_cast<deUint32>(deFloatLog2(static_cast<float>(widestEdge))) + 1u, maxMipLevels); in getNumMipLevels() 548 …useSingleMipLevel ? 1u : getNumMipLevels(params.imageExtent, m_imageFormatProperties.maxMipLevels)) in ImageClearingTestInstance()
|
D | vktApiFeatureInfo.cpp | 2507 …results.check(properties.maxMipLevels == fullMipPyramidSize, "maxMipLevels is not full mip pyramid… in imageFormatProperties() 2513 …results.check(properties.maxMipLevels == 1 || properties.maxMipLevels == fullMipPyramidSize, "Inva… in imageFormatProperties() 2531 results.check(properties.maxMipLevels == 0, "maxMipLevels != 0"); in imageFormatProperties()
|
D | vktApiExternalMemoryTests.cpp | 4055 if (properties.imageFormatProperties.maxMipLevels > 1u) { in testAndroidHardwareBufferImageFormat() 4057 properties.imageFormatProperties.maxMipLevels)); in testAndroidHardwareBufferImageFormat()
|
D | vktApiCopiesAndBlittingTests.cpp | 2694 else if (m_params.mipLevels > properties.maxMipLevels) in BlittingMipmaps()
|
/external/deqp/external/vulkancts/modules/vulkan/memory/ |
D | vktMemoryRequirementsTests.cpp | 1021 if (info.mipLevels > imageFormatProperties.maxMipLevels) in isImageSupported() 1608 if (info.mipLevels > imageFormatProperties.maxMipLevels) in isMultiplaneImageSupported()
|
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/ |
D | vktSparseResourcesTestsUtil.cpp | 786 …t<deUint32>(deFloatLog2(static_cast<float>(widestEdge))) + 1u, imageFormatProperties.maxMipLevels); in getImageMaxMipLevels()
|
/external/vulkan-validation-layers/libs/vkjson/ |
D | vkjson.cc | 342 visitor->Visit("maxMipLevels", &properties->maxMipLevels) && in Iterate()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkNullDriver.cpp | 1027 pImageFormatProperties->maxMipLevels = deLog2Ceil32(4096) + 1; in getPhysicalDeviceImageFormatProperties()
|
D | vkStructTypes.inl | 113 deUint32 maxMipLevels; member
|
D | vkStrUtilImpl.inl | 2419 s << "\tmaxMipLevels = " << value.maxMipLevels << '\n';
|
/external/deqp/external/vulkancts/modules/vulkan/texture/ |
D | vktTextureTestUtil.cpp | 334 if (imageFormatProperties.maxMipLevels < mipLevels) in updateTextureData()
|
/external/mesa3d/include/vulkan/ |
D | vulkan.h | 1288 uint32_t maxMipLevels; member
|
/external/skia/third_party/vulkan/vulkan/ |
D | vulkan.h | 1385 uint32_t maxMipLevels; member
|
/external/skqp/third_party/vulkan/vulkan/ |
D | vulkan.h | 1385 uint32_t maxMipLevels; member
|
/external/vulkan-validation-layers/layers/ |
D | buffer_validation.cpp | 766 if (pCreateInfo->mipLevels > format_limits.maxMipLevels) { in PreCallValidateCreateImage()
|
D | vk_validation_error_database.txt | 711 …n3D, mipLevels must be less than or equal to VkImageFormatProperties::maxMipLevels (as returned by…
|
/external/vulkan-validation-layers/include/vulkan/ |
D | vulkan.h | 1581 uint32_t maxMipLevels; member
|
D | vulkan.hpp | 18343 && ( maxMipLevels == rhs.maxMipLevels ) in operator ==() 18355 uint32_t maxMipLevels; member
|
/external/deqp/external/vulkancts/scripts/src/ |
D | vulkan.h.in | 1603 uint32_t maxMipLevels; member
|
/external/vulkan-validation-layers/tests/ |
D | layer_validation_tests.cpp | 19063 if ((imgFmtProps.maxMipLevels + 1) <= (floor(log2(maxDim)) + 1)) { in TEST_F() 19065 image_create_info.mipLevels = imgFmtProps.maxMipLevels + 1; in TEST_F()
|