From: Ian Romanick Date: Wed, 19 Aug 2015 21:25:48 +0000 (-0700) Subject: i965: Make gen7_enable_hw_binding_tables static X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1e4d3d25fff65b2508ae12b4b4d6b64057dabe95;p=mesa.git i965: Make gen7_enable_hw_binding_tables static All of the other state upload functions are static because the only use is in the brw_tracked_state structure. Signed-off-by: Ian Romanick Reviewed-by: Abdiel Janulgue --- diff --git a/src/mesa/drivers/dri/i965/brw_binding_tables.c b/src/mesa/drivers/dri/i965/brw_binding_tables.c index b188fc7de57..508f1f019ae 100644 --- a/src/mesa/drivers/dri/i965/brw_binding_tables.c +++ b/src/mesa/drivers/dri/i965/brw_binding_tables.c @@ -311,7 +311,7 @@ gen7_disable_hw_binding_tables(struct brw_context *brw) /** * Enable hardware binding tables and set up the binding table pool. */ -void +static void gen7_enable_hw_binding_tables(struct brw_context *brw) { if (!brw->use_resource_streamer) diff --git a/src/mesa/drivers/dri/i965/brw_state.h b/src/mesa/drivers/dri/i965/brw_state.h index b6f565702cb..97b81f08b2e 100644 --- a/src/mesa/drivers/dri/i965/brw_state.h +++ b/src/mesa/drivers/dri/i965/brw_state.h @@ -374,7 +374,6 @@ void gen7_update_binding_table_from_array(struct brw_context *brw, gl_shader_stage stage, const uint32_t* binding_table, int num_surfaces); -void gen7_enable_hw_binding_tables(struct brw_context *brw); void gen7_disable_hw_binding_tables(struct brw_context *brw); void gen7_reset_hw_bt_pool_offsets(struct brw_context *brw);