Module: Mesa Branch: master Commit: 477ac09c9e1d2d6c174cb6102ce806323da8c5c7 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=477ac09c9e1d2d6c174cb6102ce806323da8c5c7
Author: Matt Turner <[email protected]> Date: Fri Aug 25 20:40:13 2017 -0700 i965: Mark functions used conditionally as UNUSED The functions we're marking as UNUSED in genX_state_upload.c are used only when compiling for particular generations. Reviewed-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> --- src/mesa/drivers/dri/i965/genX_state_upload.c | 4 ++-- src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c b/src/mesa/drivers/dri/i965/genX_state_upload.c index eb370db023..3c2dc95482 100644 --- a/src/mesa/drivers/dri/i965/genX_state_upload.c +++ b/src/mesa/drivers/dri/i965/genX_state_upload.c @@ -119,7 +119,7 @@ ro_bo(struct brw_bo *bo, uint32_t offset) }; } -static struct brw_address +UNUSED static struct brw_address ggtt_bo(struct brw_bo *bo, uint32_t offset) { return (struct brw_address) { @@ -3036,7 +3036,7 @@ genX(upload_push_constant_packets)(struct brw_context *brw) for (int stage = 0; stage <= MESA_SHADER_FRAGMENT; stage++) { struct brw_stage_state *stage_state = stage_states[stage]; - struct gl_program *prog = ctx->_Shader->CurrentProgram[stage]; + UNUSED struct gl_program *prog = ctx->_Shader->CurrentProgram[stage]; if (!stage_state->push_constants_dirty) continue; diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c index ef4a2b8095..3fd5af4e3b 100644 --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c @@ -397,7 +397,7 @@ brw_get_num_logical_layers(const struct intel_mipmap_tree *mt, unsigned level) return mt->surf.logical_level0_px.array_len; } -static unsigned +UNUSED static unsigned get_num_phys_layers(const struct isl_surf *surf, unsigned level) { /* In case of physical dimensions one needs to consider also the layout. _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
