diff options
author | Dave Airlie <[email protected]> | 2016-10-13 05:18:34 +0100 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-10-19 10:15:42 +1000 |
commit | 36e6be2e0d1ae8e6b56fe04bdfafa33db50049ac (patch) | |
tree | 50b21c7237e64c1b328b9383d699476d6b8608fb /src/intel/vulkan/anv_wsi.c | |
parent | 7c10258567ca98e28b291b679fde8cd60b719579 (diff) |
anv/wsi/x11: push anv_device out of the init/finish routines
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_wsi.c')
-rw-r--r-- | src/intel/vulkan/anv_wsi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/intel/vulkan/anv_wsi.c b/src/intel/vulkan/anv_wsi.c index 56ed3ec7029..767fa79f7af 100644 --- a/src/intel/vulkan/anv_wsi.c +++ b/src/intel/vulkan/anv_wsi.c @@ -31,7 +31,7 @@ anv_init_wsi(struct anv_physical_device *physical_device) memset(physical_device->wsi_device.wsi, 0, sizeof(physical_device->wsi_device.wsi)); #ifdef VK_USE_PLATFORM_XCB_KHR - result = anv_x11_init_wsi(physical_device); + result = anv_x11_init_wsi(&physical_device->wsi_device, &physical_device->instance->alloc); if (result != VK_SUCCESS) return result; #endif @@ -40,7 +40,7 @@ anv_init_wsi(struct anv_physical_device *physical_device) result = anv_wl_init_wsi(physical_device); if (result != VK_SUCCESS) { #ifdef VK_USE_PLATFORM_XCB_KHR - anv_x11_finish_wsi(physical_device); + anv_x11_finish_wsi(&physical_device->wsi_device, &physical_device->instance->alloc); #endif return result; } @@ -56,7 +56,7 @@ anv_finish_wsi(struct anv_physical_device *physical_device) anv_wl_finish_wsi(physical_device); #endif #ifdef VK_USE_PLATFORM_XCB_KHR - anv_x11_finish_wsi(physical_device); + anv_x11_finish_wsi(&physical_device->wsi_device, &physical_device->instance->alloc); #endif } |