summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <michael.blumenkrantz@gmail.com>2022-04-12 14:55:37 -0400
committerMarge Bot <emma+marge@anholt.net>2022-04-18 23:45:30 +0000
commit0067641d3cb3b0d870f3ffa4f3ff557123fc662e (patch)
treefe453c4a00d1d0242e3f6ddb02f1f510bdb6336d
parent8c539328fd3fc8514117917bf6cd02768ec02d97 (diff)
zink: require KHR_imageless_framebuffer
this allows for deleting tons of code Acked-by: Adam Jackson <ajax@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15904>
-rw-r--r--docs/drivers/zink.rst1
-rw-r--r--src/gallium/drivers/zink/zink_device_info.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/drivers/zink.rst b/docs/drivers/zink.rst
index 9c05985af3f..9394b7bf183 100644
--- a/docs/drivers/zink.rst
+++ b/docs/drivers/zink.rst
@@ -38,6 +38,7 @@ Here's a list of those requirements:
* `VK_KHR_maintenance1`_
* ``VK_KHR_create_renderpass2``
+ * ``VK_KHR_imageless_framebuffer``
* ``VK_KHR_timeline_semaphore``
* `VK_EXT_custom_border_color`_
* `VK_EXT_provoking_vertex`_
diff --git a/src/gallium/drivers/zink/zink_device_info.py b/src/gallium/drivers/zink/zink_device_info.py
index 4f1eb965b2f..e0a88984fb4 100644
--- a/src/gallium/drivers/zink/zink_device_info.py
+++ b/src/gallium/drivers/zink/zink_device_info.py
@@ -131,7 +131,7 @@ EXTENSIONS = [
Extension("VK_KHR_imageless_framebuffer",
alias="imgless",
features=True,
- conditions=["$feats.imagelessFramebuffer"]),
+ required=True),
Extension("VK_EXT_robustness2",
alias="rb2",
properties=True,