diff options
author | Eric Engestrom <[email protected]> | 2019-06-22 13:31:53 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-07-31 09:41:05 +0100 |
commit | eee70e09bf2e24e6baec30a6569dfcb2155e467b (patch) | |
tree | b117670a0fa158b32be6a84dea718521f6a5ef26 /src/mesa | |
parent | e775b938b25fb78129963f8323181997c265bc42 (diff) |
intel: replace MAYBE_UNUSED with UNUSED
MAYBE_UNUSED is going away, so let's replace legitimate uses of it with
UNUSED, which the former aliased to so far anyway.
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/genX_blorp_exec.c | 2 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/genX_state_upload.c | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/i965/genX_blorp_exec.c b/src/mesa/drivers/dri/i965/genX_blorp_exec.c index a838fd6e020..8f06f5e9ef2 100644 --- a/src/mesa/drivers/dri/i965/genX_blorp_exec.c +++ b/src/mesa/drivers/dri/i965/genX_blorp_exec.c @@ -255,7 +255,7 @@ blorp_flush_range(UNUSED struct blorp_batch *batch, UNUSED void *start, static void blorp_emit_urb_config(struct blorp_batch *batch, unsigned vs_entry_size, - MAYBE_UNUSED unsigned sf_entry_size) + UNUSED unsigned sf_entry_size) { assert(batch->blorp->driver_ctx == batch->driver_batch); struct brw_context *brw = batch->driver_batch; diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c b/src/mesa/drivers/dri/i965/genX_state_upload.c index 035fbb5073a..7b64fd9badc 100644 --- a/src/mesa/drivers/dri/i965/genX_state_upload.c +++ b/src/mesa/drivers/dri/i965/genX_state_upload.c @@ -237,9 +237,9 @@ genX(emit_vertex_buffer_state)(struct brw_context *brw, unsigned buffer_nr, struct brw_bo *bo, unsigned start_offset, - MAYBE_UNUSED unsigned end_offset, + UNUSED unsigned end_offset, unsigned stride, - MAYBE_UNUSED unsigned step_rate) + UNUSED unsigned step_rate) { struct GENX(VERTEX_BUFFER_STATE) buf_state = { .VertexBufferIndex = buffer_nr, @@ -4900,8 +4900,8 @@ genX(emit_mi_report_perf_count)(struct brw_context *brw, * Emit a 3DSTATE_SAMPLER_STATE_POINTERS_{VS,HS,GS,DS,PS} packet. */ static void -genX(emit_sampler_state_pointers_xs)(MAYBE_UNUSED struct brw_context *brw, - MAYBE_UNUSED struct brw_stage_state *stage_state) +genX(emit_sampler_state_pointers_xs)(UNUSED struct brw_context *brw, + UNUSED struct brw_stage_state *stage_state) { #if GEN_GEN >= 7 static const uint16_t packet_headers[] = { @@ -5117,7 +5117,7 @@ genX(upload_default_color)(struct brw_context *brw, } static uint32_t -translate_wrap_mode(GLenum wrap, MAYBE_UNUSED bool using_nearest) +translate_wrap_mode(GLenum wrap, UNUSED bool using_nearest) { switch (wrap) { case GL_REPEAT: |