summaryrefslogtreecommitdiff
path: root/xc/extras/Mesa/src/FX/fxvs_tmp.h
blob: e3a30bf5d1e51ae6d72ad9df1fdae71820804f5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/* -*- mode: C; tab-width:8; c-basic-offset:2 -*- */

/*
 * Mesa 3-D graphics library
 * Version:  3.3
 *
 * Copyright (C) 1999-2000  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.
 *
 *
 * Original Mesa / 3Dfx device driver (C) 1999 David Bucciarelli, by the
 * terms stated above.
 *
 * Thank you for your contribution, David!
 *
 * Please make note of the above copyright/license statement.  If you
 * contributed code or bug fixes to this code under the previous (GNU
 * Library) license and object to the new license, your code will be
 * removed at your request.  Please see the Mesa docs/COPYRIGHT file
 * for more information.
 *
 * Additional Mesa/3Dfx driver developers:
 *   Daryll Strauss <daryll@precisioninsight.com>
 *   Keith Whitwell <keith@precisioninsight.com>
 *
 * See fxapi.h for more revision/author details.
 */


#if (IND & (SETUP_XY|SETUP_W|SETUP_Z))
#define V1 VARS_XY
#define I1 , INCR_XY
#else
#define V1
#define I1
#endif

#if (IND & SETUP_XY)
#define S1 DO_SETUP_XY
#else
#define S1
#endif

#if (IND & SETUP_W)
#define S2 S1 DO_SETUP_W
#define V2 V1 VARS_W
#else
#define S2 S1
#define V2 V1
#endif

#if (IND & SETUP_Z)
#define S3 S2 DO_SETUP_Z
#else
#define S3 S2
#endif

#if (IND & SETUP_RGBA)
#define V4 V2 VARS_RGBA
#define S4 S3 DO_SETUP_RGBA
#define I4 I1 , INCR_RGBA
#else
#define V4 V2
#define S4 S3
#define I4 I1
#endif

#if (IND & SETUP_TMU0)
#define V5 V4 VARS_TMU0
#define S5 S4 DO_SETUP_TMU0
#define I5 I4 , INCR_TMU0
#define F5    FIXUP_TMU0
#else
#define V5 V4
#define S5 S4
#define I5 I4
#define F5
#endif

#if (IND & SETUP_TMU1)
#define V6 V5 VARS_TMU1
#define S6 S5 DO_SETUP_TMU1
#define I6 I5 , INCR_TMU1
#define F6 F5 FIXUP_TMU1
#else
#define V6 V5
#define S6 S5
#define I6 I5
#define F6 F5
#endif

#if (IND & SETUP_TMU0) && (IND & SETUP_TMU1)
#define F7 FIXUP_TMU01
#else
#define F7 F6
#endif

#define VARS V6
#define DO_SETUP S6
#define INCR I6
#define FIXUP F7

static void NAME(struct vertex_buffer *VB, GLuint start, GLuint end)
{
   GLcontext *ctx = VB->ctx;
   fxMesaContext fxMesa = (fxMesaContext)ctx->DriverCtx;

   if (fxMesa->new_state) 
      fxSetupFXUnits( ctx );

   {
      const float snapper = (3L<<18);
      fxVertex *gWin = FX_DRIVER_DATA(VB)->verts;
      GLfloat *v = gWin[start].f;
      GLfloat *vend = gWin[end].f;
      VARS;

      (void) gWin;
      (void) fxMesa;
      (void) snapper;

      if (VB->ClipOrMask) {
	 GLubyte *clipmask = &VB->ClipMask[start];
	 for (;v!=vend;v+=16,clipmask++ INCR) {
	    if (*clipmask == 0) {
	       DO_SETUP;
	    }
	 }
      } else 
	 for (;v!=vend;v+=16 INCR) {
	    DO_SETUP;
	 }

      /* rare - I hope */
      FIXUP;
   }
}


#undef V1
#undef V2
#undef V3
#undef V4
#undef V5
#undef V6
#undef VARS

#undef S1
#undef S2
#undef S3
#undef S4
#undef S5
#undef S6
#undef DO_SETUP

#undef I1
#undef I4
#undef I5
#undef I6
#undef INCR

#undef F5
#undef F6
#undef F7
#undef FIXUP


#undef IND
#undef NAME