From 4f3e7cd3cf44ef36c77f60105898d506fa08a5ea Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 6 Nov 2000 17:08:02 +0000 Subject: added a setup function for selection/feedback --- src/mesa/swrast_setup/ss_vb.c | 48 ++++++++++++++++++++++++++----------------- 1 file changed, 29 insertions(+), 19 deletions(-) (limited to 'src/mesa/swrast_setup') diff --git a/src/mesa/swrast_setup/ss_vb.c b/src/mesa/swrast_setup/ss_vb.c index 7f8fbdfdc5..6849c0c080 100644 --- a/src/mesa/swrast_setup/ss_vb.c +++ b/src/mesa/swrast_setup/ss_vb.c @@ -92,6 +92,10 @@ static SetupFunc setup_func[MAX_SETUPFUNC]; #define TAG(x) x##_multitex_color_spec_index_eye_fog #include "ss_vbtmp.h" +#define IND (COLOR|INDEX|TEX0) +#define TAG(x) x##_selection_feedback +#include "ss_vbtmp.h" + void @@ -138,6 +142,8 @@ _swsetup_vb_init( GLcontext *ctx ) setup_func[TEX0|EYE] = rs_tex0_color_eye; setup_func[TEX0|COLOR|EYE] = rs_tex0_color_eye; + + setup_func[COLOR|INDEX|TEX0] = rs_selection_feedback; } @@ -147,27 +153,31 @@ _swsetup_choose_rastersetup_func(GLcontext *ctx) SScontext *swsetup = SWSETUP_CONTEXT(ctx); int funcindex; - if (ctx->Visual.RGBAflag) { - funcindex = COLOR; - - if (ctx->Texture._ReallyEnabled & ~0xf) - funcindex |= MULTITEX; - else if (ctx->Texture._ReallyEnabled & 0xf) - funcindex |= TEX0; - - if (ctx->Light.Model.ColorControl == GL_SEPARATE_SPECULAR_COLOR || - ctx->Fog.ColorSumEnabled) - funcindex |= SPEC; - - if (ctx->Point._Attenuated) - funcindex |= EYE; + if (ctx->RenderMode == GL_RENDER) { + if (ctx->Visual.RGBAflag) { + funcindex = COLOR; + + if (ctx->Texture._ReallyEnabled & ~0xf) + funcindex |= MULTITEX; + else if (ctx->Texture._ReallyEnabled & 0xf) + funcindex |= TEX0; + + if (ctx->Light.Model.ColorControl == GL_SEPARATE_SPECULAR_COLOR || + ctx->Fog.ColorSumEnabled) + funcindex |= SPEC; + + if (ctx->Point._Attenuated) + funcindex |= EYE; + } + else { + funcindex = INDEX; + } + } + else { + /* feedback or section */ + funcindex = (COLOR | INDEX | TEX0); } - else - funcindex = INDEX; - if (ctx->RenderMode != GL_RENDER) - funcindex = (INDEX|COLOR|MULTITEX); - swsetup->RasterSetup = setup_func[funcindex]; } -- cgit v1.2.3