diff options
author | Jason Ekstrand <[email protected]> | 2017-03-31 22:15:31 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-04-03 13:51:08 -0700 |
commit | 3598a2907c071ca4642b8b247c8b0724681ab869 (patch) | |
tree | 4e59e214db44569b9b253181cbe592e3f5b95c07 /src/vulkan | |
parent | 22b116171f88f2dcb1be2a5ea6cd64c0731670e9 (diff) |
vulkan/wsi: Fix some line wrapping
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Daniel Stone <[email protected]>
Diffstat (limited to 'src/vulkan')
-rw-r--r-- | src/vulkan/wsi/wsi_common.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vulkan/wsi/wsi_common.h b/src/vulkan/wsi/wsi_common.h index 24828764554..8227c1e4e91 100644 --- a/src/vulkan/wsi/wsi_common.h +++ b/src/vulkan/wsi/wsi_common.h @@ -70,7 +70,10 @@ struct wsi_swapchain { uint32_t *image_index); VkResult (*queue_present)(struct wsi_swapchain *swap_chain, uint32_t image_index); - void (*get_image_and_linear)(struct wsi_swapchain *swapchain, int imageIndex, VkImage *image, VkImage *linear_image); + void (*get_image_and_linear)(struct wsi_swapchain *swapchain, + int imageIndex, + VkImage *image, + VkImage *linear_image); }; struct wsi_interface { |