v3dv: fill in Vulkan 1.2 missing device properties

Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17786>
This commit is contained in:
Iago Toral Quiroga 2022-05-11 14:11:39 +02:00 committed by Marge Bot
parent efb17fc4f1
commit 366534768a
1 changed files with 3 additions and 0 deletions

View File

@ -1606,6 +1606,9 @@ v3dv_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice,
/* V3D doesn't support min/max filtering */
.filterMinmaxSingleComponentFormats = false,
.filterMinmaxImageComponentMapping = false,
.framebufferIntegerColorSampleCounts =
VK_SAMPLE_COUNT_1_BIT | VK_SAMPLE_COUNT_4_BIT,
};
memset(vk12.driverName, 0, VK_MAX_DRIVER_NAME_SIZE);
snprintf(vk12.driverName, VK_MAX_DRIVER_NAME_SIZE, "V3DV Mesa");