diff options
author | Stéphane Marchesin <[email protected]> | 2012-10-04 17:57:31 -0700 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2012-10-05 12:45:02 -0700 |
commit | 74b6ea49dfc1b8921de1768da937557150ee7893 (patch) | |
tree | af1a55207f6f857cc4c325f5b514c0f2d5ec8016 /src/gallium/drivers/i915/i915_context.h | |
parent | dca9e3c4779936970dac796872a2399cd0437f63 (diff) |
i915g: Get rid of the fixup state functions.
Now that the saved_* state is gone, we don't need those any longer.
Diffstat (limited to 'src/gallium/drivers/i915/i915_context.h')
-rw-r--r-- | src/gallium/drivers/i915/i915_context.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gallium/drivers/i915/i915_context.h b/src/gallium/drivers/i915/i915_context.h index 719a0e87308..0c0555c7172 100644 --- a/src/gallium/drivers/i915/i915_context.h +++ b/src/gallium/drivers/i915/i915_context.h @@ -289,13 +289,6 @@ struct i915_context { /** blitter/hw-clear */ struct blitter_context* blitter; - - /** State tracking needed by u_blitter for save/restore. */ - void (*saved_bind_fs_state)(struct pipe_context *pipe, void *shader); - void (*saved_bind_sampler_states)(struct pipe_context *pipe, - unsigned num, void **sampler); - void (*saved_set_sampler_views)(struct pipe_context *pipe, - unsigned num, struct pipe_sampler_view **views); }; /* A flag for each state_tracker state object: @@ -400,7 +393,6 @@ void i915_clear_emit(struct pipe_context *pipe, unsigned buffers, * */ void i915_init_state_functions( struct i915_context *i915 ); -void i915_init_fixup_state_functions( struct i915_context *i915 ); void i915_init_flush_functions( struct i915_context *i915 ); void i915_init_string_functions( struct i915_context *i915 ); |