Home
last modified time | relevance | path

Searched refs:maxArrayLayers (Results 1 – 25 of 191) sorted by relevance

12345678

/aosp_15_r20/external/mesa3d/src/broadcom/vulkan/
H A Dv3dv_formats.c519 pImageFormatProperties->maxArrayLayers = V3D_MAX_ARRAY_LAYERS; in get_image_format_properties()
526 pImageFormatProperties->maxArrayLayers = in get_image_format_properties()
534 pImageFormatProperties->maxArrayLayers = 1; in get_image_format_properties()
597 pImageFormatProperties->maxArrayLayers = 1; in get_image_format_properties()
614 .maxArrayLayers = 0, in get_image_format_properties()
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMultisampleBase.cpp139 if (imageFormatProps.maxArrayLayers < imageInfo.arrayLayers) in validateImageInfo()
144 << imageFormatProps.maxArrayLayers; in validateImageInfo()
H A DvktPipelineRenderToImageTests.cpp773 …ze.w() = std::min(static_cast<uint32_t>(imageSize.w()), colorImageFormatProperties.maxArrayLayers); in testWithSizeReduction()
792 … std::min(static_cast<uint32_t>(imageSize.w()), depthStencilImageFormatProperties.maxArrayLayers); in testWithSizeReduction()
/aosp_15_r20/external/mesa3d/src/amd/vulkan/
H A Dradv_formats.c803 props->maxArrayLayers = 1; in radv_check_modifier_support()
1036 .maxArrayLayers = maxArraySize, in radv_get_image_format_properties()
1056 .maxArrayLayers = 0, in radv_get_image_format_properties()
1108 format_properties->maxArrayLayers = MIN2(1, format_properties->maxArrayLayers); in get_external_image_format_properties()
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiPhysicalDeviceFormatPropertiesMaint5Tests.cpp133 return l.maxMipLevels == r.maxMipLevels && l.maxArrayLayers == r.maxArrayLayers && in operator ==()
H A DvktApiFeatureInfo.cpp4707 results.check(imageType != VK_IMAGE_TYPE_3D || properties.maxArrayLayers == 1, in imageFormatProperties()
4741 results.check((isYCbCrFormat(format) && (properties.maxArrayLayers == 1)) || in imageFormatProperties()
4743 properties.maxArrayLayers >= deviceLimits.maxImageArrayLayers, in imageFormatProperties()
4750 results.check(properties.maxArrayLayers >= 1, "Invalid maxArrayLayers"); in imageFormatProperties()
4771 results.check(properties.maxArrayLayers == 0, "maxArrayLayers != 0"); in imageFormatProperties()
/aosp_15_r20/external/mesa3d/src/freedreno/vulkan/
H A Dtu_formats.cc341 .maxArrayLayers = 0, in tu_image_unsupported_format()
522 .maxArrayLayers = maxArraySize, in tu_get_image_format_properties()
/aosp_15_r20/external/mesa3d/src/imagination/vulkan/
H A Dpvr_formats.c920 pImageFormatProperties->maxArrayLayers = 1; in pvr_get_image_format_properties()
929 pImageFormatProperties->maxArrayLayers = PVR_MAX_ARRAY_LAYERS; in pvr_get_image_format_properties()
957 pImageFormatProperties->maxArrayLayers = 1; in pvr_get_image_format_properties()
/aosp_15_r20/external/mesa3d/src/gallium/frontends/lavapipe/
H A Dlvp_formats.c404 .maxArrayLayers = maxArraySize, in lvp_get_image_format_properties()
417 .maxArrayLayers = 0, in lvp_get_image_format_properties()
/aosp_15_r20/external/mesa3d/src/intel/vulkan_hasvk/
H A Danv_formats.c1225 .maxArrayLayers = maxArraySize, in anv_get_image_format_properties()
1245 .maxArrayLayers = 0, in anv_get_image_format_properties()
1397 base_props->imageFormatProperties.maxArrayLayers = 1; in anv_GetPhysicalDeviceImageFormatProperties2()
/aosp_15_r20/external/swiftshader/src/Vulkan/
H A DVkPhysicalDevice.cpp2462 pImageFormatProperties->maxArrayLayers = vk::MAX_IMAGE_ARRAY_LAYERS; in getImageFormatProperties()
2500 pImageFormatProperties->maxArrayLayers = 1; // no 3D + layers in getImageFormatProperties()
2514 pImageFormatProperties->maxArrayLayers = 1; in getImageFormatProperties()
2523 pImageFormatProperties->maxArrayLayers = 1; in getImageFormatProperties()
/aosp_15_r20/external/mesa3d/src/intel/vulkan/
H A Danv_formats.c1600 .maxArrayLayers = maxArraySize, in anv_get_image_format_properties()
1625 props->imageFormatProperties.maxArrayLayers = 1; in anv_get_image_format_properties()
1790 .maxArrayLayers = 0, in anv_get_image_format_properties()
/aosp_15_r20/external/mesa3d/src/panfrost/vulkan/
H A Dpanvk_physical_device.c1191 .maxArrayLayers = maxArraySize, in get_image_format_properties()
1208 .maxArrayLayers = 0, in get_image_format_properties()
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/renderpass/
H A DvktDynamicRenderingDepthStencilResolveTests.cpp331 if (imageFormatProperties.maxArrayLayers < m_config.imageLayers) in createImage()
344 imageFormatProperties.maxArrayLayers < m_config.imageLayers) in createImage()
H A DvktRenderPassDepthStencilResolveTests.cpp392 if (imageFormatProperties.maxArrayLayers < m_config.imageLayers) in createImage()
405 imageFormatProperties.maxArrayLayers < m_config.imageLayers) in createImage()
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
H A DvktYCbCrFormatTests.cpp255 if (properties.maxArrayLayers < 2) in checkSupport()
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryRequirementsTests.cpp1150 if (info.arrayLayers > imageFormatProperties.maxArrayLayers) in isImageSupported()
1890 if (info.arrayLayers > imageFormatProperties.maxArrayLayers) in isMultiplaneImageSupported()
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageSubresourceLayoutTests.cpp264 …if (m_params.imageType == VK_IMAGE_TYPE_2D && imgFormatProperties.maxArrayLayers < m_params.dimens… in checkSupport()
H A DvktImageLoadStoreTests.cpp601 if (imageFormatProperties.maxArrayLayers < (uint32_t)m_texture.numLayers()) in checkSupport()
1376 if (vkImageFormatProperties.maxArrayLayers < (uint32_t)m_texture.numLayers()) in checkSupport()
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/modifiers/
H A DvktModifiersTests.cpp334 TCU_CHECK(imageProperties.imageFormatProperties.maxArrayLayers >= 1); in listModifiersCase()
/aosp_15_r20/external/mesa3d/src/asahi/vulkan/
H A Dhk_image.c533 .maxArrayLayers = maxArraySize, in hk_GetPhysicalDeviceImageFormatProperties2()
/aosp_15_r20/external/deqp/external/vulkancts/framework/vulkan/
H A DvkNullDriver.cpp1313 pImageFormatProperties->maxArrayLayers = 8; in getPhysicalDeviceImageFormatProperties()
/aosp_15_r20/external/mesa3d/src/nouveau/vulkan/
H A Dnvk_image.c554 .maxArrayLayers = maxArraySize, in nvk_GetPhysicalDeviceImageFormatProperties2()
/aosp_15_r20/external/mesa3d/src/microsoft/vulkan/
H A Ddzn_device.c1534 properties->imageFormatProperties.maxArrayLayers = dzn_physical_device_get_max_array_layers(); in dzn_physical_device_get_image_format_properties()
1536 properties->imageFormatProperties.maxArrayLayers = 1; in dzn_physical_device_get_image_format_properties()
/aosp_15_r20/external/vulkan-validation-layers/tests/
H A Dvklayertests_buffer_image_memory_sampler.cpp6129 if (img_limits.maxArrayLayers != UINT32_MAX) { in TEST_F()
6130 image_ci.arrayLayers = img_limits.maxArrayLayers + 1; in TEST_F()
6932 if (img_limits.maxArrayLayers == 1) { in TEST_F()
6935 image_create_info.arrayLayers = img_limits.maxArrayLayers; in TEST_F()

12345678