Module: Mesa
Branch: staging/18.2
Commit: 21dfd29996958149bbb1cc1dc8a2c257065bf164
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=21dfd29996958149bbb1cc1dc8a2c257065bf164

Author: Eric Engestrom <eric.engest...@intel.com>
Date:   Mon Nov  5 09:55:02 2018 +0000

wsi/wayland: use proper VkResult type

Signed-off-by: Eric Engestrom <eric.engest...@intel.com>
Reviewed-by: Dave Airlie <airl...@redhat.com>
(cherry picked from commit dcee22afed935a434118935bcdad5c4fc7246077)

---

 src/vulkan/wsi/wsi_common_wayland.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/vulkan/wsi/wsi_common_wayland.c 
b/src/vulkan/wsi/wsi_common_wayland.c
index 6b34e21bd9..a6d4f38558 100644
--- a/src/vulkan/wsi/wsi_common_wayland.c
+++ b/src/vulkan/wsi/wsi_common_wayland.c
@@ -455,10 +455,10 @@ wsi_wl_get_presentation_support(struct wsi_device 
*wsi_device,
       (struct wsi_wayland *)wsi_device->wsi[VK_ICD_WSI_PLATFORM_WAYLAND];
 
    struct wsi_wl_display display;
-   int ret = wsi_wl_display_init(wsi, &display, wl_display, false);
+   VkResult ret = wsi_wl_display_init(wsi, &display, wl_display, false);
    wsi_wl_display_finish(&display);
 
-   return ret == 0;
+   return ret == VK_SUCCESS;
 }
 
 static VkResult

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to