diff options
author | Grazvydas Ignotas <[email protected]> | 2016-04-16 04:00:15 +0300 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2016-04-25 12:23:31 +0200 |
commit | d14778656bf818bfb58b8a0ed2c2037b80d91ccb (patch) | |
tree | d176ebc0dbc6a1b422143ef0937e57c9ee7e0128 /src/intel/vulkan/anv_dump.c | |
parent | ff48375a164b8bd07882481c2f6caf3d8f1f5617 (diff) |
anv: fix warnings in release build
Mark variables MAYBE_UNUSED to avoid unused-but-set-variable warnings
in release build.
Signed-off-by: Grazvydas Ignotas <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_dump.c')
-rw-r--r-- | src/intel/vulkan/anv_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_dump.c b/src/intel/vulkan/anv_dump.c index b7fa28be787..63ad2cd070a 100644 --- a/src/intel/vulkan/anv_dump.c +++ b/src/intel/vulkan/anv_dump.c @@ -33,7 +33,7 @@ anv_dump_image_to_ppm(struct anv_device *device, unsigned array_layer, const char *filename) { VkDevice vk_device = anv_device_to_handle(device); - VkResult result; + MAYBE_UNUSED VkResult result; VkExtent2D extent = { image->extent.width, image->extent.height }; for (unsigned i = 0; i < miplevel; i++) { |