Module: Mesa Branch: main Commit: 464f0ed74b37f3d94fc5e2833f4b21500f8d44e1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=464f0ed74b37f3d94fc5e2833f4b21500f8d44e1
Author: Mike Blumenkrantz <[email protected]> Date: Fri Sep 24 10:56:08 2021 -0400 zink: enable timeline ext features this is required by spec even though nobody cares Reviewed-by: Dave Airlie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13033> --- src/gallium/drivers/zink/zink_device_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/zink/zink_device_info.py b/src/gallium/drivers/zink/zink_device_info.py index 3ac8011336a..0c5971d94a0 100644 --- a/src/gallium/drivers/zink/zink_device_info.py +++ b/src/gallium/drivers/zink/zink_device_info.py @@ -167,7 +167,7 @@ EXTENSIONS = [ properties=True, features=True, guard=True), - Extension("VK_KHR_timeline_semaphore"), + Extension("VK_KHR_timeline_semaphore", alias="timeline", features=True), Extension("VK_EXT_4444_formats", alias="format_4444", features=True),
