diff options
author | Brian <[email protected]> | 2007-10-31 11:08:31 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-10-31 11:08:31 -0600 |
commit | b31e37f14d75231724a1cbb0c7fe7031a2315671 (patch) | |
tree | e4128dd3ca70a93d9f23aaa8d7bab0cbb8f569b1 /src | |
parent | d775509fb7736aac2d4c7903a93c0d7cb8015a91 (diff) |
remove intelInvalidateState
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/intel_winsys/intel_context.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mesa/drivers/dri/intel_winsys/intel_context.c b/src/mesa/drivers/dri/intel_winsys/intel_context.c index 71bc5003d26..975085b1681 100644 --- a/src/mesa/drivers/dri/intel_winsys/intel_context.c +++ b/src/mesa/drivers/dri/intel_winsys/intel_context.c @@ -151,16 +151,6 @@ static const struct dri_debug_control debug_control[] = { }; #endif -static void -intelInvalidateState(GLcontext * ctx, GLuint new_state) -{ - _vbo_InvalidateState(ctx, new_state); - _tnl_InvalidateState(ctx, new_state); - _tnl_invalidate_vertex_state(ctx, new_state); - - st_invalidate_state( ctx, new_state ); -} - void intelFlush(GLcontext * ctx) @@ -180,9 +170,6 @@ static void intelInitDriverFunctions(struct dd_function_table *functions) { _mesa_init_driver_functions(functions); - - functions->UpdateState = intelInvalidateState; - st_init_driver_functions(functions); } |