vulkan/wsi: fix pointer-integer conversion warnings

For 32bit build. Trivial.

Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
Grazvydas Ignotas
2018-08-21 00:36:58 +03:00
parent 9177074524
commit 0076ea92a9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1517,7 +1517,7 @@ wsi_register_vblank_event(struct wsi_display_fence *fence,
flags,
frame_requested,
frame_queued,
(uint64_t) fence);
(uintptr_t) fence);
if (!ret)
return VK_SUCCESS;
@@ -2342,7 +2342,7 @@ wsi_get_randr_output_display(VkPhysicalDevice physical_device,
if (connector)
*display = wsi_display_connector_to_handle(connector);
else
*display = NULL;
*display = VK_NULL_HANDLE;
return VK_SUCCESS;
}
+1 -1
View File
@@ -1325,7 +1325,7 @@ x11_surface_create_swapchain(VkIcdSurfaceBase *icd_surface,
* mode which provokes reallocation when anything changes, to make
* sure we have the most optimal allocation.
*/
struct x11_swapchain *old_chain = (void *) pCreateInfo->oldSwapchain;
struct x11_swapchain *old_chain = (void *)(intptr_t) pCreateInfo->oldSwapchain;
if (old_chain)
chain->last_present_mode = old_chain->last_present_mode;
else