mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
i965: Make gen7_upload_ps_state static
It is only ever called from within the same file. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Acked-by: Jason Ekstrand <jason.ekstrand@intel.com> Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
This commit is contained in:
parent
7a12e646d3
commit
93977d3a15
2 changed files with 1 additions and 10 deletions
|
|
@ -266,15 +266,6 @@ void brw_update_renderbuffer_surfaces(struct brw_context *brw,
|
|||
uint32_t render_target_start,
|
||||
uint32_t *surf_offset);
|
||||
|
||||
/* gen7_wm_state.c */
|
||||
void
|
||||
gen7_upload_ps_state(struct brw_context *brw,
|
||||
const struct gl_fragment_program *fp,
|
||||
const struct brw_stage_state *stage_state,
|
||||
const struct brw_wm_prog_data *prog_data,
|
||||
bool enable_dual_src_blend, unsigned sample_mask,
|
||||
unsigned fast_clear_op);
|
||||
|
||||
/* gen7_wm_surface_state.c */
|
||||
uint32_t gen7_surface_tiling_mode(uint32_t tiling);
|
||||
uint32_t gen7_surface_msaa_bits(unsigned num_samples, enum intel_msaa_layout l);
|
||||
|
|
|
|||
|
|
@ -127,7 +127,7 @@ const struct brw_tracked_state gen7_wm_state = {
|
|||
.emit = upload_wm_state,
|
||||
};
|
||||
|
||||
void
|
||||
static void
|
||||
gen7_upload_ps_state(struct brw_context *brw,
|
||||
const struct gl_fragment_program *fp,
|
||||
const struct brw_stage_state *stage_state,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue