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_image.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_image.c')
-rw-r--r-- | src/intel/vulkan/anv_image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index 03a8cb88d90..fb2838924dd 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -343,7 +343,7 @@ anv_validate_CreateImageView(VkDevice _device, { ANV_FROM_HANDLE(anv_image, image, pCreateInfo->image); const VkImageSubresourceRange *subresource; - const struct anv_format *view_format_info; + MAYBE_UNUSED const struct anv_format *view_format_info; /* Validate structure type before dereferencing it. */ assert(pCreateInfo); |