vulkan/wsi: fix pointer-integer conversion warnings
For 32bit build. Trivial. Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user