summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2016-03-29 14:06:32 -0700
committerJason Ekstrand <[email protected]>2016-04-08 15:57:35 -0700
commitafada45590789191e96860851df4696170e4231c (patch)
treebf477d777fa3a5ad66604b1ecdd4cd4c8f61d0f6 /src
parent9553fd2c97bda18b997845610be365d6adf0fd4c (diff)
anv/blit2d: Fix whitespace
Reviewed-by: Nanley Chery <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/intel/vulkan/anv_meta_blit2d.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/intel/vulkan/anv_meta_blit2d.c b/src/intel/vulkan/anv_meta_blit2d.c
index 144a62481b8..6a7845fd30f 100644
--- a/src/intel/vulkan/anv_meta_blit2d.c
+++ b/src/intel/vulkan/anv_meta_blit2d.c
@@ -131,11 +131,11 @@ create_iview(struct anv_cmd_buffer *cmd_buffer,
static void
meta_emit_blit2d(struct anv_cmd_buffer *cmd_buffer,
- struct anv_image_view *src_iview,
- VkOffset3D src_offset,
- struct anv_image_view *dest_iview,
- VkOffset3D dest_offset,
- VkExtent3D extent)
+ struct anv_image_view *src_iview,
+ VkOffset3D src_offset,
+ struct anv_image_view *dest_iview,
+ VkOffset3D dest_offset,
+ VkExtent3D extent)
{
struct anv_device *device = cmd_buffer->device;
@@ -348,11 +348,11 @@ anv_meta_blit2d(struct anv_cmd_buffer *cmd_buffer,
/* Perform blit */
meta_emit_blit2d(cmd_buffer,
- &src_iview,
- (VkOffset3D){rects[r].src_x, rects[r].src_y, 0},
- &dst_iview,
- (VkOffset3D){rects[r].dst_x, rects[r].dst_y, 0},
- (VkExtent3D){rects[r].width, rects[r].height, 1});
+ &src_iview,
+ (VkOffset3D){rects[r].src_x, rects[r].src_y, 0},
+ &dst_iview,
+ (VkOffset3D){rects[r].dst_x, rects[r].dst_y, 0},
+ (VkExtent3D){rects[r].width, rects[r].height, 1});
anv_DestroyImage(vk_device, src_img, &cmd_buffer->pool->alloc);
anv_DestroyImage(vk_device, dst_img, &cmd_buffer->pool->alloc);