i965/context: Remove some unnecessary vfuncs

Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Reviewed-by: Chad Versace <chad.versace@intel.com>
This commit is contained in:
Jason Ekstrand 2016-06-10 20:59:21 -07:00
parent 305044c5b1
commit 745f5778f3
4 changed files with 1 additions and 21 deletions

View File

@ -744,27 +744,10 @@ struct brw_context
struct
{
void (*update_texture_surface)(struct gl_context *ctx,
unsigned unit,
uint32_t *surf_offset,
bool for_gather, uint32_t plane);
uint32_t (*update_renderbuffer_surface)(struct brw_context *brw,
struct gl_renderbuffer *rb,
bool layered, unsigned unit,
uint32_t surf_index);
void (*emit_texture_surface_state)(struct brw_context *brw,
struct intel_mipmap_tree *mt,
GLenum target,
unsigned min_layer,
unsigned max_layer,
unsigned min_level,
unsigned max_level,
unsigned format,
unsigned swizzle,
uint32_t *surf_offset,
int surf_index,
bool rw, bool for_gather);
void (*emit_null_surface_state)(struct brw_context *brw,
unsigned width,
unsigned height,

View File

@ -1007,7 +1007,7 @@ update_stage_texture_surfaces(struct brw_context *brw,
/* _NEW_TEXTURE */
if (ctx->Texture.Unit[unit]._Current) {
brw->vtbl.update_texture_surface(ctx, unit, surf_offset + s, for_gather, plane);
brw_update_texture_surface(ctx, unit, surf_offset + s, for_gather, plane);
}
}
}
@ -1587,7 +1587,6 @@ const struct brw_tracked_state brw_wm_image_surfaces = {
void
gen4_init_vtable_surface_functions(struct brw_context *brw)
{
brw->vtbl.update_texture_surface = brw_update_texture_surface;
brw->vtbl.update_renderbuffer_surface = gen4_update_renderbuffer_surface;
brw->vtbl.emit_null_surface_state = brw_emit_null_surface_state;
}

View File

@ -176,7 +176,6 @@ gen7_emit_null_surface_state(struct brw_context *brw,
void
gen7_init_vtable_surface_functions(struct brw_context *brw)
{
brw->vtbl.update_texture_surface = brw_update_texture_surface;
brw->vtbl.update_renderbuffer_surface = brw_update_renderbuffer_surface;
brw->vtbl.emit_null_surface_state = gen7_emit_null_surface_state;
}

View File

@ -80,7 +80,6 @@ gen8_emit_null_surface_state(struct brw_context *brw,
void
gen8_init_vtable_surface_functions(struct brw_context *brw)
{
brw->vtbl.update_texture_surface = brw_update_texture_surface;
brw->vtbl.update_renderbuffer_surface = brw_update_renderbuffer_surface;
brw->vtbl.emit_null_surface_state = gen8_emit_null_surface_state;
}