/external/swiftshader/src/Vulkan/ |
D | VkPhysicalDevice.cpp | 606 pImageFormatProperties->maxExtent.width = 1 << vk::MAX_IMAGE_LEVELS_1D; in getImageFormatProperties() 607 pImageFormatProperties->maxExtent.height = 1; in getImageFormatProperties() 608 pImageFormatProperties->maxExtent.depth = 1; in getImageFormatProperties() 614 pImageFormatProperties->maxExtent.width = 1 << vk::MAX_IMAGE_LEVELS_CUBE; in getImageFormatProperties() 615 pImageFormatProperties->maxExtent.height = 1 << vk::MAX_IMAGE_LEVELS_CUBE; in getImageFormatProperties() 616 pImageFormatProperties->maxExtent.depth = 1; in getImageFormatProperties() 621 pImageFormatProperties->maxExtent.width = 1 << vk::MAX_IMAGE_LEVELS_2D; in getImageFormatProperties() 622 pImageFormatProperties->maxExtent.height = 1 << vk::MAX_IMAGE_LEVELS_2D; in getImageFormatProperties() 623 pImageFormatProperties->maxExtent.depth = 1; in getImageFormatProperties() 628 pImageFormatProperties->maxExtent.width = 1 << vk::MAX_IMAGE_LEVELS_3D; in getImageFormatProperties() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineMultisampleBase.cpp | 119 if (imageFormatProps.maxExtent.width < imageInfo.extent.width || in validateImageInfo() 120 imageFormatProps.maxExtent.height < imageInfo.extent.height || in validateImageInfo() 121 imageFormatProps.maxExtent.depth < imageInfo.extent.depth) in validateImageInfo() 130 << imageFormatProps.maxExtent.width << ", " in validateImageInfo() 131 << imageFormatProps.maxExtent.height << ", " in validateImageInfo() 132 << imageFormatProps.maxExtent.depth in validateImageInfo()
|
D | vktPipelineImageSamplingInstance.cpp | 312 if (formatProperties.maxExtent.width == 0 && in ImageSamplingInstance() 313 formatProperties.maxExtent.height == 0 && in ImageSamplingInstance() 314 formatProperties.maxExtent.depth == 0) in ImageSamplingInstance()
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_formats.c | 700 VkExtent3D maxExtent; in anv_get_image_format_properties() local 717 maxExtent.width = 16384; in anv_get_image_format_properties() 718 maxExtent.height = 1; in anv_get_image_format_properties() 719 maxExtent.depth = 1; in anv_get_image_format_properties() 728 maxExtent.width = 16384; in anv_get_image_format_properties() 729 maxExtent.height = 16384; in anv_get_image_format_properties() 730 maxExtent.depth = 1; in anv_get_image_format_properties() 735 maxExtent.width = 2048; in anv_get_image_format_properties() 736 maxExtent.height = 2048; in anv_get_image_format_properties() 737 maxExtent.depth = 2048; in anv_get_image_format_properties() [all …]
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_formats.c | 1048 VkExtent3D maxExtent; in radv_get_image_format_properties() local 1073 maxExtent.width = 16384; in radv_get_image_format_properties() 1074 maxExtent.height = 1; in radv_get_image_format_properties() 1075 maxExtent.depth = 1; in radv_get_image_format_properties() 1080 maxExtent.width = 16384; in radv_get_image_format_properties() 1081 maxExtent.height = 16384; in radv_get_image_format_properties() 1082 maxExtent.depth = 1; in radv_get_image_format_properties() 1087 maxExtent.width = 2048; in radv_get_image_format_properties() 1088 maxExtent.height = 2048; in radv_get_image_format_properties() 1089 maxExtent.depth = 2048; in radv_get_image_format_properties() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-ot-hhea-table.hh | 66 FWORD maxExtent; /* horizontal: Max(lsb + (xMax - xMin)), member
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiFeatureInfo.cpp | 2652 const deUint32 fullMipPyramidSize = de::max(de::max(deLog2Ceil32(properties.maxExtent.width), in imageFormatProperties() 2653 deLog2Ceil32(properties.maxExtent.height)), in imageFormatProperties() 2654 deLog2Ceil32(properties.maxExtent.depth)) + 1; in imageFormatProperties() 2658 … != VK_IMAGE_TYPE_1D || (properties.maxExtent.width >= 1 && properties.maxExtent.height == 1 && pr… in imageFormatProperties() 2659 … != VK_IMAGE_TYPE_2D || (properties.maxExtent.width >= 1 && properties.maxExtent.height >= 1 && pr… in imageFormatProperties() 2660 … != VK_IMAGE_TYPE_3D || (properties.maxExtent.width >= 1 && properties.maxExtent.height >= 1 && pr… in imageFormatProperties() 2674 …results.check(imageType != VK_IMAGE_TYPE_1D || (properties.maxExtent.width >= deviceLimits.maxImag… in imageFormatProperties() 2676 …results.check(imageType != VK_IMAGE_TYPE_2D || (properties.maxExtent.width >= deviceLimits.maxImag… in imageFormatProperties() 2677 properties.maxExtent.height >= deviceLimits.maxImageDimension2D), in imageFormatProperties() 2679 …results.check(imageType != VK_IMAGE_TYPE_3D || (properties.maxExtent.width >= deviceLimits.maxImag… in imageFormatProperties() [all …]
|
D | vktApiCopiesAndBlittingTests.cpp | 3267 else if ((m_params.src.image.extent.width > properties.maxExtent.width) || in checkSupport() 3268 (m_params.src.image.extent.height > properties.maxExtent.height) || in checkSupport() 3287 else if ((m_params.dst.image.extent.width > properties.maxExtent.width) || in checkSupport() 3288 (m_params.dst.image.extent.height > properties.maxExtent.height) || in checkSupport()
|
D | vktApiExternalMemoryTests.cpp | 4028 deUint32 maxWidth = properties.imageFormatProperties.maxExtent.width; in testAndroidHardwareBufferImageFormat() 4029 deUint32 maxHeight = properties.imageFormatProperties.maxExtent.height; in testAndroidHardwareBufferImageFormat()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkNullDriver.cpp | 1030 pImageFormatProperties->maxExtent.width = 4096; in getPhysicalDeviceImageFormatProperties() 1031 pImageFormatProperties->maxExtent.height = 4096; in getPhysicalDeviceImageFormatProperties() 1032 pImageFormatProperties->maxExtent.depth = 4096; in getPhysicalDeviceImageFormatProperties()
|
D | vkStructTypes.inl | 112 VkExtent3D maxExtent; member
|
/external/deqp/external/vulkancts/modules/vulkan/renderpass/ |
D | vktRenderPassSampleReadTests.cpp | 167 if (imageFormatProperties.maxExtent.width < imageExtent.width in createImage() 168 || imageFormatProperties.maxExtent.height < imageExtent.height in createImage()
|
D | vktRenderPassDepthStencilResolveTests.cpp | 321 if (imageFormatProperties.maxExtent.width < imageExtent.width in createImage() 322 || imageFormatProperties.maxExtent.height < imageExtent.height in createImage()
|
D | vktRenderPassMultisampleResolveTests.cpp | 258 if (imageFormatProperties.maxExtent.width < imageExtent.width in createImage() 259 || imageFormatProperties.maxExtent.height < imageExtent.height in createImage()
|
D | vktRenderPassMultisampleTests.cpp | 245 if (imageFormatProperties.maxExtent.width < imageExtent.width in createImage() 246 || imageFormatProperties.maxExtent.height < imageExtent.height in createImage()
|
/external/deqp/external/vulkancts/modules/vulkan/texture/ |
D | vktTextureTestUtil.cpp | 362 if (imageFormatProperties.maxExtent.width < textureDimension.x() || in updateTextureData() 363 imageFormatProperties.maxExtent.height < textureDimension.y() || in updateTextureData() 364 imageFormatProperties.maxExtent.depth < textureDimension.z()) in updateTextureData()
|
/external/deqp/external/vulkancts/modules/vulkan/geometry/ |
D | vktGeometryLayeredRenderingTests.cpp | 175 imageFormatProperties.maxExtent.height < requiredSize.height || in checkImageFormatProperties() 176 imageFormatProperties.maxExtent.width < requiredSize.width || in checkImageFormatProperties() 177 imageFormatProperties.maxExtent.depth < requiredSize.depth) in checkImageFormatProperties()
|
/external/skia/tests/ |
D | VkHardwareBufferTest.cpp | 628 REPORTER_ASSERT(reporter, DEV_W <= imageFormatProperties.maxExtent.width); in checkOptimalHardwareBuffer() 629 REPORTER_ASSERT(reporter, DEV_H <= imageFormatProperties.maxExtent.height); in checkOptimalHardwareBuffer()
|
/external/skqp/tests/ |
D | VkHardwareBufferTest.cpp | 622 REPORTER_ASSERT(reporter, DEV_W <= imageFormatProperties.maxExtent.width); in checkOptimalHardwareBuffer() 623 REPORTER_ASSERT(reporter, DEV_H <= imageFormatProperties.maxExtent.height); in checkOptimalHardwareBuffer()
|
/external/mesa3d/include/vulkan/ |
D | vulkan.h | 1578 VkExtent3D maxExtent; member
|
/external/vulkan-validation-layers/tests/ |
D | layer_validation_tests.cpp | 3578 if (image_format_properties.maxExtent.width == 0) { in TEST_F() 7566 if (formatProps.maxExtent.width < 100 || formatProps.maxExtent.height < 100) { in TEST_F() 7754 if (format_props.maxExtent.width < 32 || format_props.maxExtent.height < 32) { in TEST_F() 29567 if (image_format_properties.maxExtent.width == 0) { in TEST_F()
|
/external/skqp/include/third_party/vulkan/vulkan/ |
D | vulkan_core.h | 1748 VkExtent3D maxExtent; member
|
/external/skia/include/third_party/vulkan/vulkan/ |
D | vulkan_core.h | 1748 VkExtent3D maxExtent; member
|
/external/swiftshader/include/vulkan/ |
D | vulkan_core.h | 1866 VkExtent3D maxExtent; member
|
/external/vulkan-headers/include/vulkan/ |
D | vulkan_core.h | 1913 VkExtent3D maxExtent; member
|