mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
turnip: enable VK_EXT_index_type_uint8
Signed-off-by: Jonathan Marek <jonathan@marek.ca> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5579>
This commit is contained in:
parent
52da27aede
commit
6cf87d777a
2 changed files with 7 additions and 0 deletions
|
|
@ -716,6 +716,12 @@ tu_GetPhysicalDeviceFeatures2(VkPhysicalDevice physicalDevice,
|
|||
features->geometryStreams = false;
|
||||
break;
|
||||
}
|
||||
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INDEX_TYPE_UINT8_FEATURES_EXT: {
|
||||
VkPhysicalDeviceIndexTypeUint8FeaturesEXT *features =
|
||||
(VkPhysicalDeviceIndexTypeUint8FeaturesEXT *)ext;
|
||||
features->indexTypeUint8 = true;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -79,6 +79,7 @@ EXTENSIONS = [
|
|||
Extension('VK_KHR_external_fence_fd', 1, True),
|
||||
Extension('VK_IMG_filter_cubic', 1, 'device->gpu_id == 650'),
|
||||
Extension('VK_EXT_filter_cubic', 1, 'device->gpu_id == 650'),
|
||||
Extension('VK_EXT_index_type_uint8', 1, True),
|
||||
]
|
||||
|
||||
MAX_API_VERSION = VkVersion(MAX_API_VERSION)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue