Mesa (main): dozen: Stop asking for semaphore/fence signaling

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Jul 7 18:47:59 UTC 2022


Module: Mesa
Branch: main
Commit: 0b92636b62afea9bdf590e3478d2491d474d70d1
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0b92636b62afea9bdf590e3478d2491d474d70d1

Author: Jason Ekstrand <jason.ekstrand at collabora.com>
Date:   Wed Jul  6 19:59:14 2022 -0500

dozen: Stop asking for semaphore/fence signaling

Dozen is currently a SW driver as far as WSI is concerned so it's going
to wait on a fence anyway.  Also, I highly doubt it's actually hooked
these up properly.  It's probably just a copy+paste from ANV.

Reviewed-by: Jesse Natalie <jenatali at microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17388>

---

 src/microsoft/vulkan/dzn_wsi.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/microsoft/vulkan/dzn_wsi.c b/src/microsoft/vulkan/dzn_wsi.c
index 8c3ccf07fbc..77a44ec17bc 100644
--- a/src/microsoft/vulkan/dzn_wsi.c
+++ b/src/microsoft/vulkan/dzn_wsi.c
@@ -57,8 +57,6 @@ dzn_wsi_init(struct dzn_physical_device *physical_device)
 
    physical_device->wsi_device.supports_modifiers = false;
    physical_device->vk.wsi_device = &physical_device->wsi_device;
-   physical_device->wsi_device.signal_semaphore_with_memory = true;
-   physical_device->wsi_device.signal_fence_with_memory = true;
 
    return VK_SUCCESS;
 }



More information about the mesa-commit mailing list