1 | /* Copyright (c) 2001, Stanford University
|
---|
2 | * All rights reserved
|
---|
3 | *
|
---|
4 | * See the file LICENSE.txt for information on redistributing this software.
|
---|
5 | */
|
---|
6 |
|
---|
7 | #include <stdio.h>
|
---|
8 | #include "state.h"
|
---|
9 | #include "state/cr_statetypes.h"
|
---|
10 | #include "state_internals.h"
|
---|
11 |
|
---|
12 |
|
---|
13 | /*
|
---|
14 | * Apply modelview, projection, viewport transformations to (x,y,z,w)
|
---|
15 | * and update the current raster position attributes.
|
---|
16 | * Do NOT set dirty state.
|
---|
17 | */
|
---|
18 | void
|
---|
19 | crStateRasterPosUpdate(PCRStateTracker pState, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
|
---|
20 | {
|
---|
21 | CRContext *g = GetCurrentContext(pState);
|
---|
22 | CRCurrentState *c = &(g->current);
|
---|
23 | CRTransformState *t = &(g->transform);
|
---|
24 | CRViewportState *v = &(g->viewport);
|
---|
25 | GLvectorf p;
|
---|
26 | int i;
|
---|
27 |
|
---|
28 | if (g->current.inBeginEnd)
|
---|
29 | {
|
---|
30 | crStateError(pState, __LINE__, __FILE__, GL_INVALID_OPERATION, "RasterPos called in Begin/End");
|
---|
31 | return;
|
---|
32 | }
|
---|
33 |
|
---|
34 | FLUSH();
|
---|
35 |
|
---|
36 | /* update current color, texcoord, etc from the CurrentStatePointers */
|
---|
37 | crStateCurrentRecover(pState);
|
---|
38 |
|
---|
39 | p.x = x;
|
---|
40 | p.y = y;
|
---|
41 | p.z = z;
|
---|
42 | p.w = w;
|
---|
43 |
|
---|
44 | /* Apply modelview and projection matrix */
|
---|
45 | crStateTransformXformPoint(t, &p);
|
---|
46 |
|
---|
47 | /* clip test */
|
---|
48 | if (p.x > p.w || p.y > p.w || p.z > p.w ||
|
---|
49 | p.x < -p.w || p.y < -p.w || p.z < -p.w)
|
---|
50 | {
|
---|
51 | c->rasterValid = GL_FALSE;
|
---|
52 | return;
|
---|
53 | }
|
---|
54 |
|
---|
55 | /* divide by W (perspective projection) */
|
---|
56 | p.x /= p.w;
|
---|
57 | p.y /= p.w;
|
---|
58 | p.z /= p.w;
|
---|
59 | p.w = 1.0f;
|
---|
60 |
|
---|
61 | /* map from NDC to window coords */
|
---|
62 | crStateViewportApply(v, &p);
|
---|
63 |
|
---|
64 | c->rasterValid = GL_TRUE;
|
---|
65 | ASSIGN_4V(c->rasterAttrib[VERT_ATTRIB_POS], p.x, p.y, p.z, p.w);
|
---|
66 | ASSIGN_4V(c->rasterAttribPre[VERT_ATTRIB_POS], p.x, p.y, p.z, p.w);
|
---|
67 | for (i = 1; i < CR_MAX_VERTEX_ATTRIBS; i++) {
|
---|
68 | COPY_4V(c->rasterAttrib[i] , c->vertexAttrib[i]);
|
---|
69 | }
|
---|
70 |
|
---|
71 | /* XXX need to update raster distance... */
|
---|
72 | /* from Mesa... */
|
---|
73 | #ifdef CR_EXT_fog_coord
|
---|
74 | if (g->fog.fogCoordinateSource == GL_FOG_COORDINATE_EXT)
|
---|
75 | c->rasterAttrib[VERT_ATTRIB_FOG][0] = c->vertexAttrib[VERT_ATTRIB_FOG][0];
|
---|
76 | else
|
---|
77 | #endif
|
---|
78 | c->rasterAttrib[VERT_ATTRIB_FOG][0] = 0.0; /*(GLfloat)
|
---|
79 | sqrt( eye[0]*eye[0] + eye[1]*eye[1] + eye[2]*eye[2] );*/
|
---|
80 | }
|
---|
81 |
|
---|
82 |
|
---|
83 | /* As above, but set dirty flags */
|
---|
84 | static void RasterPos4f(PCRStateTracker pState, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
|
---|
85 | {
|
---|
86 | CRContext *g = GetCurrentContext(pState);
|
---|
87 | CRStateBits *sb = GetCurrentBits(pState);
|
---|
88 | CRCurrentBits *cb = &(sb->current);
|
---|
89 |
|
---|
90 | crStateRasterPosUpdate(pState, x, y, z, w);
|
---|
91 |
|
---|
92 | DIRTY(cb->dirty, g->neg_bitid);
|
---|
93 | DIRTY(cb->rasterPos, g->neg_bitid);
|
---|
94 | }
|
---|
95 |
|
---|
96 | void STATE_APIENTRY crStateRasterPos2d(PCRStateTracker pState, GLdouble x, GLdouble y)
|
---|
97 | {
|
---|
98 | RasterPos4f(pState, (GLfloat) x, (GLfloat) y, 0.0f, 1.0f);
|
---|
99 | }
|
---|
100 |
|
---|
101 | void STATE_APIENTRY crStateRasterPos2f(PCRStateTracker pState, GLfloat x, GLfloat y)
|
---|
102 | {
|
---|
103 | RasterPos4f(pState, x, y, 0.0f, 1.0f);
|
---|
104 | }
|
---|
105 |
|
---|
106 | void STATE_APIENTRY crStateRasterPos2i(PCRStateTracker pState, GLint x, GLint y)
|
---|
107 | {
|
---|
108 | RasterPos4f(pState, (GLfloat) x, (GLfloat) y, 0.0f, 1.0f);
|
---|
109 | }
|
---|
110 |
|
---|
111 | void STATE_APIENTRY crStateRasterPos2s(PCRStateTracker pState, GLshort x, GLshort y)
|
---|
112 | {
|
---|
113 | RasterPos4f(pState, (GLfloat) x, (GLfloat) y, 0.0f, 1.0f);
|
---|
114 | }
|
---|
115 |
|
---|
116 | void STATE_APIENTRY crStateRasterPos3d(PCRStateTracker pState, GLdouble x, GLdouble y, GLdouble z)
|
---|
117 | {
|
---|
118 | RasterPos4f(pState, (GLfloat) x, (GLfloat) y, (GLfloat) z, 1.0f);
|
---|
119 | }
|
---|
120 |
|
---|
121 | void STATE_APIENTRY crStateRasterPos3f(PCRStateTracker pState, GLfloat x, GLfloat y, GLfloat z)
|
---|
122 | {
|
---|
123 | RasterPos4f(pState, x, y, z, 1.0f);
|
---|
124 | }
|
---|
125 |
|
---|
126 | void STATE_APIENTRY crStateRasterPos3i(PCRStateTracker pState, GLint x, GLint y, GLint z)
|
---|
127 | {
|
---|
128 | RasterPos4f(pState, (GLfloat) x, (GLfloat) y, (GLfloat) z, 1.0f);
|
---|
129 | }
|
---|
130 |
|
---|
131 | void STATE_APIENTRY crStateRasterPos3s(PCRStateTracker pState, GLshort x, GLshort y, GLshort z)
|
---|
132 | {
|
---|
133 | RasterPos4f(pState, (GLfloat) x, (GLfloat) y, (GLfloat) z, 1.0f);
|
---|
134 | }
|
---|
135 |
|
---|
136 | void STATE_APIENTRY crStateRasterPos4d(PCRStateTracker pState, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
|
---|
137 | {
|
---|
138 | RasterPos4f(pState, (GLfloat) x, (GLfloat) y, (GLfloat) z, (GLfloat) w);
|
---|
139 | }
|
---|
140 |
|
---|
141 | void STATE_APIENTRY crStateRasterPos4f(PCRStateTracker pState, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
|
---|
142 | {
|
---|
143 | RasterPos4f(pState, x, y, z, w);
|
---|
144 | }
|
---|
145 |
|
---|
146 | void STATE_APIENTRY crStateRasterPos4i(PCRStateTracker pState, GLint x, GLint y, GLint z, GLint w)
|
---|
147 | {
|
---|
148 | RasterPos4f(pState, (GLfloat) x, (GLfloat) y, (GLfloat) z, (GLfloat) w);
|
---|
149 | }
|
---|
150 |
|
---|
151 | void STATE_APIENTRY crStateRasterPos4s(PCRStateTracker pState, GLshort x, GLshort y, GLshort z, GLshort w)
|
---|
152 | {
|
---|
153 | RasterPos4f(pState, (GLfloat) x, (GLfloat) y, (GLfloat) z, (GLfloat) w);
|
---|
154 | }
|
---|
155 |
|
---|
156 | void STATE_APIENTRY crStateRasterPos2dv(PCRStateTracker pState, const GLdouble *v)
|
---|
157 | {
|
---|
158 | RasterPos4f(pState, (GLfloat) v[0], (GLfloat) v[1], 0.0f, 1.0f);
|
---|
159 | }
|
---|
160 |
|
---|
161 | void STATE_APIENTRY crStateRasterPos2fv(PCRStateTracker pState, const GLfloat *v)
|
---|
162 | {
|
---|
163 | RasterPos4f(pState, v[0], v[1], 0.0f, 1.0f);
|
---|
164 | }
|
---|
165 |
|
---|
166 | void STATE_APIENTRY crStateRasterPos2iv(PCRStateTracker pState, const GLint *v)
|
---|
167 | {
|
---|
168 | RasterPos4f(pState, (GLfloat) v[0], (GLfloat) v[1], 0.0f, 1.0f);
|
---|
169 | }
|
---|
170 |
|
---|
171 | void STATE_APIENTRY crStateRasterPos2sv(PCRStateTracker pState, const GLshort *v)
|
---|
172 | {
|
---|
173 | RasterPos4f(pState, (GLfloat) v[0], (GLfloat) v[1], 0.0f, 1.0f);
|
---|
174 | }
|
---|
175 |
|
---|
176 | void STATE_APIENTRY crStateRasterPos3dv(PCRStateTracker pState, const GLdouble *v)
|
---|
177 | {
|
---|
178 | RasterPos4f(pState, (GLfloat) v[0], (GLfloat) v[1], (GLfloat) v[2], 1.0f);
|
---|
179 | }
|
---|
180 |
|
---|
181 | void STATE_APIENTRY crStateRasterPos3fv(PCRStateTracker pState, const GLfloat *v)
|
---|
182 | {
|
---|
183 | RasterPos4f(pState, v[0], v[1], v[2], 1.0f);
|
---|
184 | }
|
---|
185 |
|
---|
186 | void STATE_APIENTRY crStateRasterPos3iv(PCRStateTracker pState, const GLint *v)
|
---|
187 | {
|
---|
188 | RasterPos4f(pState, (GLfloat) v[0], (GLfloat) v[1], (GLfloat) v[2], 1.0f);
|
---|
189 | }
|
---|
190 |
|
---|
191 | void STATE_APIENTRY crStateRasterPos3sv(PCRStateTracker pState, const GLshort *v)
|
---|
192 | {
|
---|
193 | RasterPos4f(pState, (GLfloat) v[0], (GLfloat) v[1], (GLfloat) v[2], 1.0f);
|
---|
194 | }
|
---|
195 |
|
---|
196 | void STATE_APIENTRY crStateRasterPos4dv(PCRStateTracker pState, const GLdouble *v)
|
---|
197 | {
|
---|
198 | RasterPos4f(pState, (GLfloat) v[0], (GLfloat) v[1], (GLfloat) v[2], (GLfloat) v[3]);
|
---|
199 | }
|
---|
200 |
|
---|
201 | void STATE_APIENTRY crStateRasterPos4fv(PCRStateTracker pState, const GLfloat *v)
|
---|
202 | {
|
---|
203 | RasterPos4f(pState, v[0], v[1], v[2], v[3]);
|
---|
204 | }
|
---|
205 |
|
---|
206 | void STATE_APIENTRY crStateRasterPos4iv(PCRStateTracker pState, const GLint *v)
|
---|
207 | {
|
---|
208 | RasterPos4f(pState, (GLfloat) v[0], (GLfloat) v[1], (GLfloat) v[2], (GLfloat) v[3]);
|
---|
209 | }
|
---|
210 |
|
---|
211 | void STATE_APIENTRY crStateRasterPos4sv(PCRStateTracker pState, const GLshort *v)
|
---|
212 | {
|
---|
213 | RasterPos4f(pState, (GLfloat) v[0], (GLfloat) v[1], (GLfloat) v[2], (GLfloat) v[3]);
|
---|
214 | }
|
---|
215 |
|
---|
216 |
|
---|
217 | /**********************************************************************/
|
---|
218 |
|
---|
219 |
|
---|
220 | static void
|
---|
221 | crStateWindowPosUpdate(PCRStateTracker pState, GLfloat x, GLfloat y, GLfloat z)
|
---|
222 | {
|
---|
223 | CRContext *g = GetCurrentContext(pState);
|
---|
224 | CRCurrentState *c = &(g->current);
|
---|
225 | CRStateBits *sb = GetCurrentBits(pState);
|
---|
226 | CRCurrentBits *cb = &(sb->current);
|
---|
227 | int i;
|
---|
228 |
|
---|
229 | if (g->current.inBeginEnd)
|
---|
230 | {
|
---|
231 | crStateError(pState, __LINE__, __FILE__, GL_INVALID_OPERATION, "WindowPos called in Begin/End");
|
---|
232 | return;
|
---|
233 | }
|
---|
234 |
|
---|
235 | FLUSH();
|
---|
236 | DIRTY(cb->dirty, g->neg_bitid);
|
---|
237 | DIRTY(cb->rasterPos, g->neg_bitid);
|
---|
238 |
|
---|
239 | c->rasterValid = GL_TRUE;
|
---|
240 | ASSIGN_4V(c->rasterAttrib[VERT_ATTRIB_POS], x, y , z, 1.0);
|
---|
241 | ASSIGN_4V(c->rasterAttribPre[VERT_ATTRIB_POS], x, y, z, 1.0);
|
---|
242 | for (i = 1; i < CR_MAX_VERTEX_ATTRIBS; i++) {
|
---|
243 | COPY_4V(c->rasterAttrib[i] , c->vertexAttrib[i]);
|
---|
244 | }
|
---|
245 | }
|
---|
246 |
|
---|
247 |
|
---|
248 | void STATE_APIENTRY crStateWindowPos2dARB (PCRStateTracker pState, GLdouble x, GLdouble y)
|
---|
249 | {
|
---|
250 | crStateWindowPosUpdate(pState, (GLfloat) x, (GLfloat) y, 0.0);
|
---|
251 | }
|
---|
252 |
|
---|
253 | void STATE_APIENTRY crStateWindowPos2dvARB (PCRStateTracker pState, const GLdouble *v)
|
---|
254 | {
|
---|
255 | crStateWindowPosUpdate(pState, (GLfloat) v[0], (GLfloat) v[1], 0.0);
|
---|
256 | }
|
---|
257 |
|
---|
258 | void STATE_APIENTRY crStateWindowPos2fARB (PCRStateTracker pState, GLfloat x, GLfloat y)
|
---|
259 | {
|
---|
260 | crStateWindowPosUpdate(pState, x, y, 0.0);
|
---|
261 | }
|
---|
262 |
|
---|
263 | void STATE_APIENTRY crStateWindowPos2fvARB (PCRStateTracker pState, const GLfloat *v)
|
---|
264 | {
|
---|
265 | crStateWindowPosUpdate(pState, v[0], v[1], 0.0);
|
---|
266 | }
|
---|
267 |
|
---|
268 | void STATE_APIENTRY crStateWindowPos2iARB (PCRStateTracker pState, GLint x, GLint y)
|
---|
269 | {
|
---|
270 | crStateWindowPosUpdate(pState, (GLfloat) x, (GLfloat) y, 0.0);
|
---|
271 | }
|
---|
272 |
|
---|
273 | void STATE_APIENTRY crStateWindowPos2ivARB (PCRStateTracker pState, const GLint *v)
|
---|
274 | {
|
---|
275 | crStateWindowPosUpdate(pState, (GLfloat) v[0], (GLfloat) v[1], 0.0);
|
---|
276 | }
|
---|
277 |
|
---|
278 | void STATE_APIENTRY crStateWindowPos2sARB (PCRStateTracker pState, GLshort x, GLshort y)
|
---|
279 | {
|
---|
280 | crStateWindowPosUpdate(pState, (GLfloat) x, (GLfloat) y, 0.0);
|
---|
281 | }
|
---|
282 |
|
---|
283 | void STATE_APIENTRY crStateWindowPos2svARB (PCRStateTracker pState, const GLshort *v)
|
---|
284 | {
|
---|
285 | crStateWindowPosUpdate(pState, (GLfloat) v[0], (GLfloat) v[1], 0.0);
|
---|
286 | }
|
---|
287 |
|
---|
288 | void STATE_APIENTRY crStateWindowPos3dARB (PCRStateTracker pState, GLdouble x, GLdouble y, GLdouble z)
|
---|
289 | {
|
---|
290 | crStateWindowPosUpdate(pState, (GLfloat) x, (GLfloat) y, (GLfloat) z);
|
---|
291 | }
|
---|
292 |
|
---|
293 | void STATE_APIENTRY crStateWindowPos3dvARB (PCRStateTracker pState, const GLdouble *v)
|
---|
294 | {
|
---|
295 | crStateWindowPosUpdate(pState, (GLfloat) v[0], (GLfloat) v[1], (GLfloat) v[2]);
|
---|
296 | }
|
---|
297 |
|
---|
298 | void STATE_APIENTRY crStateWindowPos3fARB (PCRStateTracker pState, GLfloat x, GLfloat y, GLfloat z)
|
---|
299 | {
|
---|
300 | crStateWindowPosUpdate(pState, x, y, z);
|
---|
301 | }
|
---|
302 |
|
---|
303 | void STATE_APIENTRY crStateWindowPos3fvARB (PCRStateTracker pState, const GLfloat *v)
|
---|
304 | {
|
---|
305 | crStateWindowPosUpdate(pState, v[0], v[1], v[2]);
|
---|
306 | }
|
---|
307 |
|
---|
308 | void STATE_APIENTRY crStateWindowPos3iARB (PCRStateTracker pState, GLint x, GLint y, GLint z)
|
---|
309 | {
|
---|
310 | crStateWindowPosUpdate(pState, (GLfloat) x, (GLfloat) y, (GLfloat) z);
|
---|
311 | }
|
---|
312 |
|
---|
313 | void STATE_APIENTRY crStateWindowPos3ivARB (PCRStateTracker pState, const GLint *v)
|
---|
314 | {
|
---|
315 | crStateWindowPosUpdate(pState, (GLfloat) v[0], (GLfloat) v[1], (GLfloat) v[2]);
|
---|
316 | }
|
---|
317 |
|
---|
318 | void STATE_APIENTRY crStateWindowPos3sARB (PCRStateTracker pState, GLshort x, GLshort y, GLshort z)
|
---|
319 | {
|
---|
320 | crStateWindowPosUpdate(pState, (GLfloat) x, (GLfloat) y, (GLfloat) z);
|
---|
321 | }
|
---|
322 |
|
---|
323 | void STATE_APIENTRY crStateWindowPos3svARB (PCRStateTracker pState, const GLshort *v)
|
---|
324 | {
|
---|
325 | crStateWindowPosUpdate(pState, (GLfloat) v[0], (GLfloat) v[1], (GLfloat) v[2]);
|
---|
326 | }
|
---|
327 |
|
---|