diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-07-12 13:33:33 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-07-12 13:33:33 -0600 |
commit | 4f218958cc0bc57196a748cb005f94aeeace037c (patch) | |
tree | 3ca526923e13d32aac165846bdcb74d07b0c2165 /src/mesa | |
parent | ea470eec86715cd2bc9aa86d36e6ea803d0d4017 (diff) |
Remove dead code
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_state_setup.c | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/src/mesa/pipe/softpipe/sp_state_setup.c b/src/mesa/pipe/softpipe/sp_state_setup.c index cef70d42d9..4715a26f55 100644 --- a/src/mesa/pipe/softpipe/sp_state_setup.c +++ b/src/mesa/pipe/softpipe/sp_state_setup.c @@ -31,65 +31,6 @@ #include "pipe/draw/draw_context.h" -#if 0 -static void validate_prim_pipe( struct softpipe_context *softpipe ) -{ - struct draw_stage *next = softpipe->prim.setup; - - /* TODO: make the current primitive part of the state and build - * shorter pipelines for lines & points. - */ - if (softpipe->setup.fill_cw != PIPE_POLYGON_MODE_FILL || - softpipe->setup.fill_ccw != PIPE_POLYGON_MODE_FILL) { - - softpipe->prim.unfilled->next = next; - next = softpipe->prim.unfilled; - } - - if (softpipe->setup.offset_cw || - softpipe->setup.offset_ccw) { - softpipe->prim.offset->next = next; - next = softpipe->prim.offset; - } - - if (softpipe->setup.light_twoside) { - softpipe->prim.twoside->next = next; - next = softpipe->prim.twoside; - } - - /* Always run the cull stage as we calculate determinant there - * also. Fix this.. - */ - { - softpipe->prim.cull->next = next; - next = softpipe->prim.cull; - } - - - /* Clip stage - */ - { - softpipe->prim.clip->next = next; - next = softpipe->prim.clip; - } - - /* Do software flatshading prior to clipping. XXX: should only do - * this for clipped primitives, ie it is a part of the clip - * routine. - */ - if (softpipe->setup.flatshade) { - softpipe->prim.flatshade->next = next; - next = softpipe->prim.flatshade; - } - - - softpipe->prim.first = next; -} - -#endif - - - void softpipe_set_setup_state( struct pipe_context *pipe, const struct pipe_setup_state *setup ) { @@ -100,9 +41,6 @@ void softpipe_set_setup_state( struct pipe_context *pipe, memcpy( &softpipe->setup, setup, sizeof(*setup) ); -#if 0 - validate_prim_pipe( softpipe ); -#endif softpipe->dirty |= SP_NEW_SETUP; } |