/external/mesa3d/src/intel/vulkan/ |
D | anv_formats.c | 465 VkExtent3D maxExtent; in anv_GetPhysicalDeviceImageFormatProperties() local 491 maxExtent.width = 16384; in anv_GetPhysicalDeviceImageFormatProperties() 492 maxExtent.height = 1; in anv_GetPhysicalDeviceImageFormatProperties() 493 maxExtent.depth = 1; in anv_GetPhysicalDeviceImageFormatProperties() 502 maxExtent.width = 16384; in anv_GetPhysicalDeviceImageFormatProperties() 503 maxExtent.height = 16384; in anv_GetPhysicalDeviceImageFormatProperties() 504 maxExtent.depth = 1; in anv_GetPhysicalDeviceImageFormatProperties() 509 maxExtent.width = 2048; in anv_GetPhysicalDeviceImageFormatProperties() 510 maxExtent.height = 2048; in anv_GetPhysicalDeviceImageFormatProperties() 511 maxExtent.depth = 2048; in anv_GetPhysicalDeviceImageFormatProperties() [all …]
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_formats.c | 969 VkExtent3D maxExtent; in radv_GetPhysicalDeviceImageFormatProperties() local 991 maxExtent.width = 16384; in radv_GetPhysicalDeviceImageFormatProperties() 992 maxExtent.height = 1; in radv_GetPhysicalDeviceImageFormatProperties() 993 maxExtent.depth = 1; in radv_GetPhysicalDeviceImageFormatProperties() 998 maxExtent.width = 16384; in radv_GetPhysicalDeviceImageFormatProperties() 999 maxExtent.height = 16384; in radv_GetPhysicalDeviceImageFormatProperties() 1000 maxExtent.depth = 1; in radv_GetPhysicalDeviceImageFormatProperties() 1005 maxExtent.width = 2048; in radv_GetPhysicalDeviceImageFormatProperties() 1006 maxExtent.height = 2048; in radv_GetPhysicalDeviceImageFormatProperties() 1007 maxExtent.depth = 2048; in radv_GetPhysicalDeviceImageFormatProperties() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiFeatureInfo.cpp | 2305 const deUint32 fullMipPyramidSize = de::max(de::max(deLog2Ceil32(properties.maxExtent.width), in imageFormatProperties() 2306 deLog2Ceil32(properties.maxExtent.height)), in imageFormatProperties() 2307 deLog2Ceil32(properties.maxExtent.depth)) + 1; in imageFormatProperties() 2311 … != VK_IMAGE_TYPE_1D || (properties.maxExtent.width >= 1 && properties.maxExtent.height == 1 && pr… in imageFormatProperties() 2312 … != VK_IMAGE_TYPE_2D || (properties.maxExtent.width >= 1 && properties.maxExtent.height >= 1 && pr… in imageFormatProperties() 2313 … != VK_IMAGE_TYPE_3D || (properties.maxExtent.width >= 1 && properties.maxExtent.height >= 1 && pr… in imageFormatProperties() 2327 …results.check(imageType != VK_IMAGE_TYPE_1D || (properties.maxExtent.width >= deviceLimits.maxImag… in imageFormatProperties() 2329 …results.check(imageType != VK_IMAGE_TYPE_2D || (properties.maxExtent.width >= deviceLimits.maxImag… in imageFormatProperties() 2330 properties.maxExtent.height >= deviceLimits.maxImageDimension2D), in imageFormatProperties() 2332 …results.check(imageType != VK_IMAGE_TYPE_3D || (properties.maxExtent.width >= deviceLimits.maxImag… in imageFormatProperties() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-ot-hhea-table.hh | 70 FWORD maxExtent; /* horizontal: Max(lsb + (xMax - xMin)), member
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineMultisampleInterpolationTests.cpp | 200 if (imageFormatProps.maxExtent.width < imageInfo.extent.width || in validateImageInfo() 201 imageFormatProps.maxExtent.height < imageInfo.extent.height || in validateImageInfo() 202 imageFormatProps.maxExtent.depth < imageInfo.extent.depth) in validateImageInfo() 211 << imageFormatProps.maxExtent.width << ", " in validateImageInfo() 212 << imageFormatProps.maxExtent.height << ", " in validateImageInfo() 213 << imageFormatProps.maxExtent.depth in validateImageInfo()
|
D | vktPipelineImageSamplingInstance.cpp | 255 if (formatProperties.maxExtent.width == 0 && in ImageSamplingInstance() 256 formatProperties.maxExtent.height == 0 && in ImageSamplingInstance() 257 formatProperties.maxExtent.depth == 0) in ImageSamplingInstance()
|
/external/vulkan-validation-layers/layers/ |
D | image.cpp | 330 if ((pCreateInfo->extent.depth > ImageFormatProperties.maxExtent.depth) || in CreateImage() 331 (pCreateInfo->extent.width > ImageFormatProperties.maxExtent.width) || in CreateImage() 332 (pCreateInfo->extent.height > ImageFormatProperties.maxExtent.height)) { in CreateImage() 338 … ImageFormatProperties.maxExtent.width, ImageFormatProperties.maxExtent.height, in CreateImage() 339 … ImageFormatProperties.maxExtent.depth, string_VkFormat(pCreateInfo->format)); in CreateImage()
|
D | vk_validation_error_database.txt | 713 …kPhysicalDeviceLimits::maxImageDimension1D, or VkImageFormatProperties::maxExtent.width (as return… 2073 …kPhysicalDeviceLimits::maxImageDimension2D, or VkImageFormatProperties::maxExtent.width/height (as… 2074 …hysicalDeviceLimits::maxImageDimensionCube, or VkImageFormatProperties::maxExtent.width/height (as… 2076 …kPhysicalDeviceLimits::maxImageDimension3D, or VkImageFormatProperties::maxExtent.width/height/dep…
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkNullDriver.cpp | 866 pImageFormatProperties->maxExtent.width = 4096; in getPhysicalDeviceImageFormatProperties() 867 pImageFormatProperties->maxExtent.height = 4096; in getPhysicalDeviceImageFormatProperties() 868 pImageFormatProperties->maxExtent.depth = 4096; in getPhysicalDeviceImageFormatProperties()
|
D | vkStructTypes.inl | 112 VkExtent3D maxExtent; member
|
D | vkStrUtilImpl.inl | 1964 s << "\tmaxExtent = " << value.maxExtent << '\n';
|
/external/deqp/external/vulkancts/modules/vulkan/texture/ |
D | vktTextureTestUtil.cpp | 337 if (imageFormatProperties.maxExtent.width < textureDimension.x() || in updateTextureData() 338 imageFormatProperties.maxExtent.height < textureDimension.y() || in updateTextureData() 339 imageFormatProperties.maxExtent.depth < textureDimension.z()) in updateTextureData()
|
/external/deqp/external/vulkancts/modules/vulkan/renderpass/ |
D | vktRenderPassMultisampleResolveTests.cpp | 225 if (imageFormatProperties.maxExtent.width < imageExtent.width in createImage() 226 || imageFormatProperties.maxExtent.height < imageExtent.height in createImage()
|
D | vktRenderPassMultisampleTests.cpp | 240 if (imageFormatProperties.maxExtent.width < imageExtent.width in createImage() 241 || imageFormatProperties.maxExtent.height < imageExtent.height in createImage()
|
/external/vulkan-validation-layers/libs/vkjson/ |
D | vkjson.cc | 68 visitor->Visit("maxExtent", &properties->maxExtent) && in Iterate()
|
/external/vulkan-validation-layers/include/vulkan/ |
D | vulkan.h | 1278 VkExtent3D maxExtent; member
|
D | vulkan.hpp | 12704 return ( maxExtent == rhs.maxExtent ) in operator ==() 12716 Extent3D maxExtent; member
|
/external/mesa3d/include/vulkan/ |
D | vulkan.h | 1287 VkExtent3D maxExtent; member
|
/external/skia/third_party/vulkan/vulkan/ |
D | vulkan.h | 1384 VkExtent3D maxExtent; member
|
/external/deqp/external/vulkancts/scripts/src/ |
D | vulkan.h.in | 1443 VkExtent3D maxExtent; member
|
/external/vulkan-validation-layers/tests/ |
D | layer_validation_tests.cpp | 13961 image_create_info.extent.depth = imgFmtProps.maxExtent.depth + 1; in TEST_F() 16582 if (formatProps.maxExtent.width < 100 || formatProps.maxExtent.height < 100) { in TEST_F()
|