mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-24 08:10:22 +01:00
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 <notasas@gmail.com> Reviewed-by: Chad Versace <chad.versace@intel.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
ff48375a16
commit
d14778656b
4 changed files with 4 additions and 4 deletions
|
|
@ -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++) {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -379,7 +379,7 @@ genX(cmd_buffer_flush_compute_state)(struct anv_cmd_buffer *cmd_buffer)
|
|||
{
|
||||
struct anv_pipeline *pipeline = cmd_buffer->state.compute_pipeline;
|
||||
const struct brw_cs_prog_data *cs_prog_data = get_cs_prog_data(pipeline);
|
||||
VkResult result;
|
||||
MAYBE_UNUSED VkResult result;
|
||||
|
||||
assert(pipeline->active_stages == VK_SHADER_STAGE_COMPUTE_BIT);
|
||||
|
||||
|
|
|
|||
|
|
@ -444,7 +444,7 @@ genX(cmd_buffer_flush_compute_state)(struct anv_cmd_buffer *cmd_buffer)
|
|||
{
|
||||
struct anv_pipeline *pipeline = cmd_buffer->state.compute_pipeline;
|
||||
const struct brw_cs_prog_data *cs_prog_data = get_cs_prog_data(pipeline);
|
||||
VkResult result;
|
||||
MAYBE_UNUSED VkResult result;
|
||||
|
||||
assert(pipeline->active_stages == VK_SHADER_STAGE_COMPUTE_BIT);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue