summaryrefslogtreecommitdiff
path: root/src/mesa/swrast_setup
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2004-01-05 15:24:53 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2004-01-05 15:24:53 +0000
commit588225770c60834dfd2a95850435cc549167dc05 (patch)
treeeded850ee7eabc94d90e1b067df660233ad7fc48 /src/mesa/swrast_setup
parentce81fe69da00f86464a109243d6e109b71335329 (diff)
Beef up t_vertex.c:
- cope with input vectors with size less than that of the emitted attribute. - cope with vertices with 'holes' inside and between vertices. Fix calculation of tnl->render_inputs to work with fp programs. Mirror VB->PointSizePtr in VB->AttribPtr so that it can work with t_vertex.c. Transition swrast_setup/ to use t_vertex.c to build swrast vertices.
Diffstat (limited to 'src/mesa/swrast_setup')
-rw-r--r--src/mesa/swrast_setup/ss_context.c113
-rw-r--r--src/mesa/swrast_setup/ss_context.h9
-rw-r--r--src/mesa/swrast_setup/ss_vb.c448
-rw-r--r--src/mesa/swrast_setup/ss_vbtmp.h247
4 files changed, 76 insertions, 741 deletions
diff --git a/src/mesa/swrast_setup/ss_context.c b/src/mesa/swrast_setup/ss_context.c
index 55fe141c25..df99fdb20b 100644
--- a/src/mesa/swrast_setup/ss_context.c
+++ b/src/mesa/swrast_setup/ss_context.c
@@ -31,47 +31,32 @@
#include "colormac.h"
#include "ss_context.h"
#include "ss_triangle.h"
-#include "ss_vb.h"
#include "swrast_setup.h"
#include "tnl/tnl.h"
#include "tnl/t_context.h"
#include "tnl/t_pipeline.h"
#include "tnl/t_vertex.h"
-
-#define _SWSETUP_NEW_VERTS (_NEW_RENDERMODE| \
- _NEW_POLYGON| \
- _NEW_LIGHT| \
- _NEW_TEXTURE| \
- _NEW_COLOR| \
- _NEW_FOG| \
- _NEW_POINT)
-
#define _SWSETUP_NEW_RENDERINDEX (_NEW_POLYGON|_NEW_LIGHT)
GLboolean
_swsetup_CreateContext( GLcontext *ctx )
{
- TNLcontext *tnl = TNL_CONTEXT(ctx);
SScontext *swsetup = (SScontext *)CALLOC(sizeof(SScontext));
if (!swsetup)
return GL_FALSE;
- swsetup->verts = (SWvertex *) ALIGN_CALLOC( sizeof(SWvertex) * tnl->vb.Size,
- 32);
- if (!swsetup->verts) {
- FREE(swsetup);
- return GL_FALSE;
- }
-
ctx->swsetup_context = swsetup;
swsetup->NewState = ~0;
- _swsetup_vb_init( ctx );
_swsetup_trifuncs_init( ctx );
+ _tnl_init_vertices( ctx, ctx->Const.MaxArrayLockSize + 12,
+ sizeof(SWvertex) );
+
+
return GL_TRUE;
}
@@ -81,18 +66,11 @@ _swsetup_DestroyContext( GLcontext *ctx )
SScontext *swsetup = SWSETUP_CONTEXT(ctx);
if (swsetup) {
- if (swsetup->verts)
- ALIGN_FREE(swsetup->verts);
-
- if (swsetup->ChanSecondaryColor.Ptr)
- ALIGN_FREE((void *) swsetup->ChanSecondaryColor.Ptr);
-
- if (swsetup->ChanColor.Ptr)
- ALIGN_FREE((void *) swsetup->ChanColor.Ptr);
-
FREE(swsetup);
ctx->swsetup_context = 0;
}
+
+ _tnl_free_vertices( ctx );
}
static void
@@ -102,6 +80,18 @@ _swsetup_RenderPrimitive( GLcontext *ctx, GLenum mode )
_swrast_render_primitive( ctx, mode );
}
+#define SWZ ((SWvertex *)0)
+#define SWOffset(MEMBER) (((char *)&(SWZ->MEMBER)) - ((char *)SWZ))
+
+#define EMIT_ATTR( ATTR, STYLE, MEMBER ) \
+do { \
+ map[e].attrib = (ATTR); \
+ map[e].format = (STYLE); \
+ map[e].offset = SWOffset(MEMBER); \
+ e++; \
+} while (0)
+
+
/*
* We patch this function into tnl->Driver.Render.Start.
* It's called when we start rendering a vertex buffer.
@@ -110,19 +100,60 @@ static void
_swsetup_RenderStart( GLcontext *ctx )
{
SScontext *swsetup = SWSETUP_CONTEXT(ctx);
+ TNLcontext *tnl = TNL_CONTEXT(ctx);
+ struct vertex_buffer *VB = &tnl->vb;
GLuint new_state = swsetup->NewState;
if (new_state & _SWSETUP_NEW_RENDERINDEX) {
_swsetup_choose_trifuncs( ctx );
}
- if (new_state & _SWSETUP_NEW_VERTS) {
- _swsetup_choose_rastersetup_func( ctx );
- }
-
swsetup->NewState = 0;
_swrast_render_start( ctx );
+
+ /* Important:
+ */
+ VB->AttribPtr[VERT_ATTRIB_POS] = VB->NdcPtr;
+
+
+ if (tnl->render_inputs != swsetup->last_index) {
+ GLuint index = tnl->render_inputs;
+ struct tnl_attr_map map[_TNL_ATTRIB_MAX];
+ int i, e = 0;
+
+ EMIT_ATTR( _TNL_ATTRIB_POS, EMIT_4F_VIEWPORT, win );
+
+ if (index & _TNL_BIT_COLOR0)
+ EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4CHAN_4F_RGBA, color );
+
+ if (index & _TNL_BIT_COLOR1)
+ EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_4CHAN_4F_RGBA, specular);
+
+ if (index & _TNL_BIT_FOG)
+ EMIT_ATTR( _TNL_ATTRIB_FOG, EMIT_1F, fog);
+
+ if (index & _TNL_BITS_TEX_ANY) {
+ for (i = 0; i < MAX_TEXTURE_COORD_UNITS; i++) {
+ if (index & _TNL_BIT_TEX(i)) {
+ EMIT_ATTR( _TNL_ATTRIB_TEX0+i, EMIT_4F, texcoord[i] );
+ }
+ }
+ }
+
+ if (index & _TNL_BIT_INDEX)
+ EMIT_ATTR( _TNL_ATTRIB_INDEX, EMIT_1F, index );
+
+ if (index & _TNL_BIT_POINTSIZE)
+ EMIT_ATTR( _TNL_ATTRIB_POINTSIZE, EMIT_1F, pointSize );
+
+ _tnl_install_attrs( ctx, map, e,
+ ctx->Viewport._WindowMap.m,
+ sizeof(SWvertex) );
+
+ swsetup->last_index = index;
+ }
+
}
/*
@@ -140,6 +171,7 @@ _swsetup_InvalidateState( GLcontext *ctx, GLuint new_state )
{
SScontext *swsetup = SWSETUP_CONTEXT(ctx);
swsetup->NewState |= new_state;
+ _tnl_invalidate_vertex_state( ctx, new_state );
}
@@ -147,11 +179,13 @@ void
_swsetup_Wakeup( GLcontext *ctx )
{
TNLcontext *tnl = TNL_CONTEXT(ctx);
+ SScontext *swsetup = SWSETUP_CONTEXT(ctx);
+
tnl->Driver.Render.Start = _swsetup_RenderStart;
tnl->Driver.Render.Finish = _swsetup_RenderFinish;
tnl->Driver.Render.PrimitiveNotify = _swsetup_RenderPrimitive;
- /* interp */
- /* copypv */
+ tnl->Driver.Render.Interp = _tnl_interp;
+ tnl->Driver.Render.CopyPV = _tnl_copy_pv;
tnl->Driver.Render.ClippedPolygon = _tnl_RenderClippedPolygon; /* new */
tnl->Driver.Render.ClippedLine = _tnl_RenderClippedLine; /* new */
/* points */
@@ -161,10 +195,15 @@ _swsetup_Wakeup( GLcontext *ctx )
tnl->Driver.Render.PrimTabVerts = _tnl_render_tab_verts;
tnl->Driver.Render.PrimTabElts = _tnl_render_tab_elts;
tnl->Driver.Render.ResetLineStipple = _swrast_ResetLineStipple;
- /* buildvertices */
+ tnl->Driver.Render.BuildVertices = _tnl_build_vertices;
tnl->Driver.Render.Multipass = 0;
+
+ _tnl_invalidate_vertices( ctx, ~0 );
_tnl_need_projected_coords( ctx, GL_TRUE );
_swsetup_InvalidateState( ctx, ~0 );
+
+ swsetup->verts = (SWvertex *)tnl->clipspace.vertex_buf;
+ swsetup->last_index = 0;
}
@@ -196,11 +235,7 @@ _swsetup_Translate( GLcontext *ctx, const void *vertex, SWvertex *dest )
_tnl_get_attr( ctx, vertex, _TNL_ATTRIB_INDEX, tmp );
dest->index = (GLuint) tmp[0];
-/*
- Need to check how pointsize is related to vertex program attributes:
-
_tnl_get_attr( ctx, vertex, _TNL_ATTRIB_POINTSIZE, tmp );
dest->pointSize = tmp[0];
-*/
}
diff --git a/src/mesa/swrast_setup/ss_context.h b/src/mesa/swrast_setup/ss_context.h
index 84813e98eb..2c6e4faf3d 100644
--- a/src/mesa/swrast_setup/ss_context.h
+++ b/src/mesa/swrast_setup/ss_context.h
@@ -35,14 +35,9 @@
typedef struct {
GLuint NewState;
- SWvertex *verts;
GLenum render_prim;
- GLuint SetupIndex;
-
- /* Temporaries for translating away float colors:
- */
- struct gl_client_array ChanColor;
- struct gl_client_array ChanSecondaryColor;
+ GLuint last_index;
+ SWvertex *verts;
} SScontext;
#define SWSETUP_CONTEXT(ctx) ((SScontext *)ctx->swsetup_context)
diff --git a/src/mesa/swrast_setup/ss_vb.c b/src/mesa/swrast_setup/ss_vb.c
deleted file mode 100644
index dfa0ea03a2..0000000000
--- a/src/mesa/swrast_setup/ss_vb.c
+++ /dev/null
@@ -1,448 +0,0 @@
-/*
- * Mesa 3-D graphics library
- * Version: 5.1
- *
- * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included
- * in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
- * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Authors:
- * Keith Whitwell <keith@tungstengraphics.com>
- */
-
-#include "glheader.h"
-#include "colormac.h"
-#include "context.h"
-#include "macros.h"
-#include "imports.h"
-#include "nvfragprog.h"
-
-#include "swrast/swrast.h"
-#include "tnl/t_context.h"
-#include "math/m_vector.h"
-#include "math/m_translate.h"
-
-#include "ss_context.h"
-#include "ss_vb.h"
-
-
-#if 0
-static void do_import( struct vertex_buffer *VB,
- struct gl_client_array *to,
- struct gl_client_array *from )
-{
- GLuint count = VB->Count;
-
- if (!to->Ptr) {
- to->Ptr = (GLubyte *) ALIGN_MALLOC( VB->Size * 4 * sizeof(GLchan), 32 );
- to->Type = CHAN_TYPE;
- }
-
- /* No need to transform the same value 3000 times.
- */
- if (!from->StrideB) {
- to->StrideB = 0;
- count = 1;
- }
- else
- to->StrideB = 4 * sizeof(GLchan);
-
- _math_trans_4chan( (GLchan (*)[4]) to->Ptr,
- from->Ptr,
- from->StrideB,
- from->Type,
- from->Size,
- 0,
- count);
-}
-
-static void import_float_colors( GLcontext *ctx )
-{
- struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
- struct gl_client_array *to = &SWSETUP_CONTEXT(ctx)->ChanColor;
- do_import( VB, to, VB->ColorPtr[0] );
- VB->ColorPtr[0] = to;
-}
-
-static void import_float_spec_colors( GLcontext *ctx )
-{
- struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
- struct gl_client_array *to = &SWSETUP_CONTEXT(ctx)->ChanSecondaryColor;
- do_import( VB, to, VB->SecondaryColorPtr[0] );
- VB->SecondaryColorPtr[0] = to;
-}
-#endif
-
-/* Provides a RasterSetup function which prebuilds vertices for the
- * software rasterizer. This is required for the triangle functions
- * in this module, but not the rest of the swrast module.
- */
-
-
-#define COLOR 0x1
-#define INDEX 0x2
-#define TEX0 0x4
-#define MULTITEX 0x8
-#define SPEC 0x10
-#define FOG 0x20
-#define POINT 0x40
-#define MAX_SETUPFUNC 0x80
-
-static setup_func setup_tab[MAX_SETUPFUNC];
-static interp_func interp_tab[MAX_SETUPFUNC];
-static copy_pv_func copy_pv_tab[MAX_SETUPFUNC];
-
-
-#define IND (0)
-#define TAG(x) x##_none
-#include "ss_vbtmp.h"
-
-#define IND (COLOR)
-#define TAG(x) x##_color
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|SPEC)
-#define TAG(x) x##_color_spec
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|FOG)
-#define TAG(x) x##_color_fog
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|SPEC|FOG)
-#define TAG(x) x##_color_spec_fog
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|TEX0)
-#define TAG(x) x##_color_tex0
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|TEX0|SPEC)
-#define TAG(x) x##_color_tex0_spec
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|TEX0|FOG)
-#define TAG(x) x##_color_tex0_fog
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|TEX0|SPEC|FOG)
-#define TAG(x) x##_color_tex0_spec_fog
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|MULTITEX)
-#define TAG(x) x##_color_multitex
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|MULTITEX|SPEC)
-#define TAG(x) x##_color_multitex_spec
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|MULTITEX|FOG)
-#define TAG(x) x##_color_multitex_fog
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|MULTITEX|SPEC|FOG)
-#define TAG(x) x##_color_multitex_spec_fog
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|POINT)
-#define TAG(x) x##_color_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|SPEC|POINT)
-#define TAG(x) x##_color_spec_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|FOG|POINT)
-#define TAG(x) x##_color_fog_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|SPEC|FOG|POINT)
-#define TAG(x) x##_color_spec_fog_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|TEX0|POINT)
-#define TAG(x) x##_color_tex0_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|TEX0|SPEC|POINT)
-#define TAG(x) x##_color_tex0_spec_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|TEX0|FOG|POINT)
-#define TAG(x) x##_color_tex0_fog_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|TEX0|SPEC|FOG|POINT)
-#define TAG(x) x##_color_tex0_spec_fog_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|MULTITEX|POINT)
-#define TAG(x) x##_color_multitex_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|MULTITEX|SPEC|POINT)
-#define TAG(x) x##_color_multitex_spec_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|MULTITEX|FOG|POINT)
-#define TAG(x) x##_color_multitex_fog_point
-#include "ss_vbtmp.h"
-
-#define IND (COLOR|MULTITEX|SPEC|FOG|POINT)
-#define TAG(x) x##_color_multitex_spec_fog_point
-#include "ss_vbtmp.h"
-
-#define IND (INDEX)
-#define TAG(x) x##_index
-#include "ss_vbtmp.h"
-
-#define IND (INDEX|FOG)
-#define TAG(x) x##_index_fog
-#include "ss_vbtmp.h"
-
-#define IND (INDEX|POINT)
-#define TAG(x) x##_index_point
-#include "ss_vbtmp.h"
-
-#define IND (INDEX|FOG|POINT)
-#define TAG(x) x##_index_fog_point
-#include "ss_vbtmp.h"
-
-
-/***********************************************************************
- * Additional setup and interp for back color and edgeflag.
- ***********************************************************************/
-
-#define GET_COLOR(ptr, idx) (((GLfloat (*)[4])((ptr)->data))[idx])
-
-static void interp_extras( GLcontext *ctx,
- GLfloat t,
- GLuint dst, GLuint out, GLuint in,
- GLboolean force_boundary )
-{
- struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
-
- if (VB->ColorPtr[1]) {
- INTERP_4F( t,
- GET_COLOR(VB->ColorPtr[1], dst),
- GET_COLOR(VB->ColorPtr[1], out),
- GET_COLOR(VB->ColorPtr[1], in) );
-
- if (VB->SecondaryColorPtr[1]) {
- INTERP_3F( t,
- GET_COLOR(VB->SecondaryColorPtr[1], dst),
- GET_COLOR(VB->SecondaryColorPtr[1], out),
- GET_COLOR(VB->SecondaryColorPtr[1], in) );
- }
- }
- else if (VB->IndexPtr[1]) {
- VB->IndexPtr[1]->data[dst][0] = LINTERP( t,
- VB->IndexPtr[1]->data[out][0],
- VB->IndexPtr[1]->data[in][0] );
- }
-
- if (VB->EdgeFlag) {
- VB->EdgeFlag[dst] = VB->EdgeFlag[out] || force_boundary;
- }
-
- interp_tab[SWSETUP_CONTEXT(ctx)->SetupIndex](ctx, t, dst, out, in,
- force_boundary);
-}
-
-static void copy_pv_extras( GLcontext *ctx, GLuint dst, GLuint src )
-{
- struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
-
- if (VB->ColorPtr[1]) {
- COPY_4FV( GET_COLOR(VB->ColorPtr[1], dst),
- GET_COLOR(VB->ColorPtr[1], src) );
-
- if (VB->SecondaryColorPtr[1]) {
- COPY_3V( GET_COLOR(VB->SecondaryColorPtr[1], dst),
- GET_COLOR(VB->SecondaryColorPtr[1], src) );
- }
- }
- else if (VB->IndexPtr[1]) {
- VB->IndexPtr[1]->data[dst][0] = VB->IndexPtr[1]->data[src][0];
- }
-
- copy_pv_tab[SWSETUP_CONTEXT(ctx)->SetupIndex](ctx, dst, src);
-}
-
-
-
-
-/***********************************************************************
- * Initialization
- ***********************************************************************/
-
-static void
-emit_invalid( GLcontext *ctx, GLuint start, GLuint end, GLuint newinputs )
-{
- _mesa_debug(ctx, "swrast_setup: invalid setup function\n");
- (void) (ctx && start && end && newinputs);
-}
-
-
-static void
-interp_invalid( GLcontext *ctx, GLfloat t,
- GLuint edst, GLuint eout, GLuint ein,
- GLboolean force_boundary )
-{
- _mesa_debug(ctx, "swrast_setup: invalid interp function\n");
- (void) (ctx && t && edst && eout && ein && force_boundary);
-}
-
-
-static void
-copy_pv_invalid( GLcontext *ctx, GLuint edst, GLuint esrc )
-{
- _mesa_debug(ctx, "swrast_setup: invalid copy_pv function\n");
- (void) (ctx && edst && esrc );
-}
-
-
-static void init_standard( void )
-{
- GLuint i;
-
- for (i = 0 ; i < Elements(setup_tab) ; i++) {
- setup_tab[i] = emit_invalid;
- interp_tab[i] = interp_invalid;
- copy_pv_tab[i] = copy_pv_invalid;
- }
-
- init_none();
- init_color();
- init_color_spec();
- init_color_fog();
- init_color_spec_fog();
- init_color_tex0();
- init_color_tex0_spec();
- init_color_tex0_fog();
- init_color_tex0_spec_fog();
- init_color_multitex();
- init_color_multitex_spec();
- init_color_multitex_fog();
- init_color_multitex_spec_fog();
- init_color_point();
- init_color_spec_point();
- init_color_fog_point();
- init_color_spec_fog_point();
- init_color_tex0_point();
- init_color_tex0_spec_point();
- init_color_tex0_fog_point();
- init_color_tex0_spec_fog_point();
- init_color_multitex_point();
- init_color_multitex_spec_point();
- init_color_multitex_fog_point();
- init_color_multitex_spec_fog_point();
- init_index();
- init_index_fog();
- init_index_point();
- init_index_fog_point();
-}
-
-
-/* debug only */
-#if 0
-static void
-printSetupFlags(const GLcontext *ctx, char *msg, GLuint flags )
-{
- _mesa_debug(ctx, "%s(%x): %s%s%s%s%s%s%s\n",
- msg,
- (int) flags,
- (flags & COLOR) ? "color, " : "",
- (flags & INDEX) ? "index, " : "",
- (flags & TEX0) ? "tex0, " : "",
- (flags & MULTITEX) ? "multitex, " : "",
- (flags & SPEC) ? "spec, " : "",
- (flags & FOG) ? "fog, " : "",
- (flags & POINT) ? "point, " : "");
-}
-#endif
-
-void
-_swsetup_choose_rastersetup_func(GLcontext *ctx)
-{
- SScontext *swsetup = SWSETUP_CONTEXT(ctx);
- TNLcontext *tnl = TNL_CONTEXT(ctx);
- int funcindex = 0;
-
- if (ctx->RenderMode == GL_RENDER) {
- if (ctx->Visual.rgbMode) {
- funcindex = COLOR;
-
- if (ctx->Texture._EnabledCoordUnits > 1)
- funcindex |= MULTITEX; /* a unit above unit[0] is enabled */
- else if (ctx->Texture._EnabledCoordUnits == 1)
- funcindex |= TEX0; /* only unit 0 is enabled */
-
- if (NEED_SECONDARY_COLOR(ctx))
- funcindex |= SPEC;
- }
- else {
- funcindex = INDEX;
- }
-
- if (ctx->Point._Attenuated ||
- (ctx->VertexProgram.Enabled && ctx->VertexProgram.PointSizeEnabled))
- funcindex |= POINT;
-
- if (ctx->Fog.Enabled)
- funcindex |= FOG;
- }
- else if (ctx->RenderMode == GL_FEEDBACK) {
- if (ctx->Visual.rgbMode)
- funcindex = (COLOR | TEX0); /* is feedback color subject to fogging? */
- else
- funcindex = INDEX;
- }
- else
- funcindex = 0;
-
- swsetup->SetupIndex = funcindex;
- tnl->Driver.Render.BuildVertices = setup_tab[funcindex];
-
- if (NEED_TWO_SIDED_LIGHTING(ctx) ||
- ctx->Polygon.FrontMode != GL_FILL ||
- ctx->Polygon.BackMode != GL_FILL) {
- tnl->Driver.Render.Interp = interp_extras;
- tnl->Driver.Render.CopyPV = copy_pv_extras;
- }
- else {
- tnl->Driver.Render.Interp = interp_tab[funcindex];
- tnl->Driver.Render.CopyPV = copy_pv_tab[funcindex];
- }
-
- ASSERT(tnl->Driver.Render.BuildVertices);
- ASSERT(tnl->Driver.Render.BuildVertices != emit_invalid);
-}
-
-
-void
-_swsetup_vb_init( GLcontext *ctx )
-{
- (void) ctx;
- init_standard();
- /*
- printSetupFlags(ctx);
- */
-}
-
diff --git a/src/mesa/swrast_setup/ss_vbtmp.h b/src/mesa/swrast_setup/ss_vbtmp.h
deleted file mode 100644
index d72a6693d6..0000000000
--- a/src/mesa/swrast_setup/ss_vbtmp.h
+++ /dev/null
@@ -1,247 +0,0 @@
-
-/*
- * Mesa 3-D graphics library
- * Version: 5.1
- *
- * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included
- * in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
- * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * Authors:
- * Keith Whitwell <keith@tungstengraphics.com>
- */
-
-
-static void TAG(emit)(GLcontext *ctx, GLuint start, GLuint end,
- GLuint newinputs )
-{
- TNLcontext *tnl = TNL_CONTEXT(ctx);
- struct vertex_buffer *VB = &tnl->vb;
- SWvertex *v;
- const GLfloat *ndc; /* NDC (i.e. projected clip coordinates) */
- const GLfloat *tc[MAX_TEXTURE_COORD_UNITS];
- const GLfloat *color;
- const GLfloat *spec;
- const GLfloat *index;
- const GLfloat *fog;
- const GLfloat *pointSize;
- GLuint tsz[MAX_TEXTURE_COORD_UNITS];
- GLuint tstride[MAX_TEXTURE_COORD_UNITS];
- GLuint ndc_stride, color_stride, spec_stride, index_stride;
- GLuint fog_stride, pointSize_stride;
- GLuint i;
- GLfloat *m = ctx->Viewport._WindowMap.m;
- const GLfloat sx = m[0];
- const GLfloat sy = m[5];
- const GLfloat sz = m[10];
- const GLfloat tx = m[12];
- const GLfloat ty = m[13];
- const GLfloat tz = m[14];
- GLuint maxtex = 0;
-
- if (IND & TEX0) {
- tc[0] = (GLfloat *)VB->TexCoordPtr[0]->data;
- tsz[0] = VB->TexCoordPtr[0]->size;
- tstride[0] = VB->TexCoordPtr[0]->stride;
- }
-
- if (IND & MULTITEX) {
- for (i = 0 ; i < ctx->Const.MaxTextureUnits ; i++) {
- if (VB->TexCoordPtr[i]) {
- maxtex = i+1;
- tc[i] = (GLfloat *)VB->TexCoordPtr[i]->data;
- tsz[i] = VB->TexCoordPtr[i]->size;
- tstride[i] = VB->TexCoordPtr[i]->stride;
- }
- else tc[i] = 0;
- }
- }
-
- ndc = VB->NdcPtr->data[0];
- ndc_stride = VB->NdcPtr->stride;
-
- if (IND & FOG) {
- fog = (GLfloat *) VB->FogCoordPtr->data;
- fog_stride = VB->FogCoordPtr->stride;
- }
- if (IND & COLOR) {
- color = (GLfloat *) VB->ColorPtr[0]->data;
- color_stride = VB->ColorPtr[0]->stride;
- }
- if (IND & SPEC) {
- spec = (GLfloat *) VB->SecondaryColorPtr[0]->data;
- spec_stride = VB->SecondaryColorPtr[0]->stride;
- }
- if (IND & INDEX) {
- index = (GLfloat *) VB->IndexPtr[0]->data;
- index_stride = VB->IndexPtr[0]->stride;
- }
- if (IND & POINT) {
- pointSize = (GLfloat *) VB->PointSizePtr->data;
- pointSize_stride = VB->PointSizePtr->stride;
- }
-
- v = &(SWSETUP_CONTEXT(ctx)->verts[start]);
-
- for (i=start; i < end; i++, v++) {
- if (VB->ClipMask[i] == 0) {
- v->win[0] = sx * ndc[0] + tx;
- v->win[1] = sy * ndc[1] + ty;
- v->win[2] = sz * ndc[2] + tz;
- v->win[3] = ndc[3];
- }
- STRIDE_F(ndc, ndc_stride);
-
- if (IND & TEX0) {
- COPY_CLEAN_4V( v->texcoord[0], tsz[0], tc[0] );
- STRIDE_F(tc[0], tstride[0]);
- }
-
- if (IND & MULTITEX) {
- GLuint u;
- for (u = 0 ; u < maxtex ; u++)
- if (tc[u]) {
- COPY_CLEAN_4V( v->texcoord[u], tsz[u], tc[u] );
- STRIDE_F(tc[u], tstride[u]);
- }
- }
-
- if (IND & COLOR) {
- UNCLAMPED_FLOAT_TO_RGBA_CHAN(v->color, color);
- STRIDE_F(color, color_stride);
- }
-
- if (IND & SPEC) {
- UNCLAMPED_FLOAT_TO_RGBA_CHAN(v->specular, spec);
- STRIDE_F(spec, spec_stride);
- }
-
- if (IND & FOG) {
- v->fog = fog[0];
- STRIDE_F(fog, fog_stride);
- }
-
- if (IND & INDEX) {
- v->index = (GLuint) index[0];
- STRIDE_F(index, index_stride);
- }
-
- if (IND & POINT) {
- v->pointSize = pointSize[0];
- STRIDE_F(pointSize, pointSize_stride);
- }
- }
-}
-
-
-
-static void TAG(interp)( GLcontext *ctx,
- GLfloat t,
- GLuint edst, GLuint eout, GLuint ein,
- GLboolean force_boundary )
-{
- SScontext *swsetup = SWSETUP_CONTEXT(ctx);
- struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
- GLfloat *m = ctx->Viewport._WindowMap.m;
- GLfloat *clip = VB->ClipPtr->data[edst];
-
- SWvertex *dst = &swsetup->verts[edst];
- SWvertex *in = &swsetup->verts[ein];
- SWvertex *out = &swsetup->verts[eout];
-
- /* Avoid division by zero by rearranging order of clip planes?
- */
- if (clip[3] != 0.0) {
- GLfloat oow = 1.0F / clip[3];
- dst->win[0] = m[0] * clip[0] * oow + m[12];
- dst->win[1] = m[5] * clip[1] * oow + m[13];
- dst->win[2] = m[10] * clip[2] * oow + m[14];
- dst->win[3] = oow;
- }
-
- if (IND & TEX0) {
- INTERP_4F( t, dst->texcoord[0], out->texcoord[0], in->texcoord[0] );
- }
-
- if (IND & MULTITEX) {
- GLuint u;
- GLuint maxtex = ctx->Const.MaxTextureUnits;
- for (u = 0 ; u < maxtex ; u++)
- if (VB->TexCoordPtr[u]) {
- INTERP_4F( t, dst->texcoord[u], out->texcoord[u], in->texcoord[u] );
- }
- }
-
- if (IND & COLOR) {
- INTERP_CHAN( t, dst->color[0], out->color[0], in->color[0] );
- INTERP_CHAN( t, dst->color[1], out->color[1], in->color[1] );
- INTERP_CHAN( t, dst->color[2], out->color[2], in->color[2] );
- INTERP_CHAN( t, dst->color[3], out->color[3], in->color[3] );
- }
-
- if (IND & SPEC) {
- INTERP_CHAN( t, dst->specular[0], out->specular[0], in->specular[0] );
- INTERP_CHAN( t, dst->specular[1], out->specular[1], in->specular[1] );
- INTERP_CHAN( t, dst->specular[2], out->specular[2], in->specular[2] );
- }
-
- if (IND & FOG) {
- INTERP_F( t, dst->fog, out->fog, in->fog );
- }
-
- if (IND & INDEX) {
- INTERP_UI( t, dst->index, out->index, in->index );
- }
-
- /* XXX Point size interpolation??? */
- if (IND & POINT) {
- INTERP_F( t, dst->pointSize, out->pointSize, in->pointSize );
- }
-}
-
-
-static void TAG(copy_pv)( GLcontext *ctx, GLuint edst, GLuint esrc )
-{
- SScontext *swsetup = SWSETUP_CONTEXT(ctx);
- SWvertex *dst = &swsetup->verts[edst];
- SWvertex *src = &swsetup->verts[esrc];
-
- if (IND & COLOR) {
- COPY_CHAN4( dst->color, src->color );
- }
-
- if (IND & SPEC) {
- COPY_3V( dst->specular, src->specular );
- }
-
- if (IND & INDEX) {
- dst->index = src->index;
- }
-}
-
-
-static void TAG(init)( void )
-{
- setup_tab[IND] = TAG(emit);
- interp_tab[IND] = TAG(interp);
- copy_pv_tab[IND] = TAG(copy_pv);
-}
-
-#undef TAG
-#undef IND
-#undef SETUP_FLAGS