summaryrefslogtreecommitdiff
path: root/xc/lib/GL/mesa/src/drv/tdfx/tdfx_wrapper.c
blob: 70641eb9af5ab3a124dabc9df10efc99f2aff57f (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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
/* -*- mode: c; c-basic-offset: 3 -*-
 *
 * Copyright 2000 VA Linux Systems Inc., Fremont, California.
 *
 * 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 (including the next
 * paragraph) 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
 * VA LINUX SYSTEMS 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.
 */
/* $XFree86: xc/lib/GL/mesa/src/drv/tdfx/tdfx_wrapper.c,v 1.2 2001/08/18 02:51:07 dawes Exp $ */

/*
 * Original rewrite:
 *	Gareth Hughes <gareth@valinux.com>, 29 Sep - 1 Oct 2000
 *
 * Authors:
 *	Gareth Hughes <gareth@valinux.com>
 *	Brian Paul <brianp@valinux.com>
 *
 */

#include <stdlib.h>
#include <string.h>

#include "tdfx_context.h"


FxI32
FX_grGetInteger_NoLock(tdfxContextPtr fxMesa, FxU32 pname)
{
   switch (pname) {
   case FX_FOG_TABLE_ENTRIES:
   case FX_GLIDE_STATE_SIZE:
   case FX_LFB_PIXEL_PIPE:
   case FX_PENDING_BUFFERSWAPS:
   case FX_TEXTURE_ALIGN:
   case GR_STATS_PIXELS_DEPTHFUNC_FAIL:
   case GR_STATS_PIXELS_IN:
   case GR_STATS_PIXELS_OUT:
   {
      FxI32 result;
      FxU32 grname = pname;
      fxMesa->Glide.grGet(grname, 4, &result);
      return result;
   }
   case FX_ZDEPTH_MAX:
   {
      FxI32 zvals[2];
      fxMesa->Glide.grGet(GR_ZDEPTH_MIN_MAX, 8, zvals);
      return zvals[0];
   }
   default:
      if (MESA_VERBOSE & VERBOSE_DRIVER) {
	 fprintf(stderr, "Wrong parameter in FX_grGetInteger!\n");
      }
   }

   return 0;
}


FxI32
FX_grGetInteger(tdfxContextPtr fxMesa, FxU32 pname)
{
   int result;
   LOCK_HARDWARE(fxMesa);
   result = FX_grGetInteger_NoLock(fxMesa, pname);
   UNLOCK_HARDWARE(fxMesa);
   return result;
}


const char *
FX_grGetString(tdfxContextPtr fxMesa, FxU32 pname)
{
   const char *s;
   LOCK_HARDWARE(fxMesa);
   s = fxMesa->Glide.grGetString(pname);
   UNLOCK_HARDWARE(fxMesa);
   return s;
}



/* Wrapper for grColorMask() and grColorMaskExt().
 */
void
FX_grColorMask(GLcontext *ctx, GLboolean r, GLboolean g,
               GLboolean b, GLboolean a)
{
   tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
   LOCK_HARDWARE(fxMesa);
   if (ctx->Visual->RedBits == 8) {
      /* 32bpp mode */
      ASSERT( fxMesa->Glide.grColorMaskExt );
      fxMesa->Glide.grColorMaskExt(r, g, b, a);
   }
   else {
      /* 16 bpp mode */
      /* we never have an alpha buffer */
      fxMesa->Glide.grColorMask(r || g || b, GL_FALSE);
   }
   UNLOCK_HARDWARE(fxMesa);
}


void
FX_grColorMask_NoLock(GLcontext *ctx, GLboolean r, GLboolean g,
                      GLboolean b, GLboolean a)
{
   tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
   if (ctx->Visual->RedBits == 8) {
      /* 32bpp mode */
      ASSERT( fxMesa->Glide.grColorMaskExt );
      fxMesa->Glide.grColorMaskExt(r, g, b, a);
   }
   else {
      /* 16 bpp mode */
      /* we never have an alpha buffer */
      fxMesa->Glide.grColorMask(r || g || b, GL_FALSE);
   }
}


/* As above, but pass the mask as an array
 */
void
FX_grColorMaskv(GLcontext *ctx, const GLboolean rgba[4])
{
   tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
   LOCK_HARDWARE(fxMesa);
   if (ctx->Visual->RedBits == 8) {
      /* 32bpp mode */
      ASSERT( fxMesa->Glide.grColorMaskExt );
      fxMesa->Glide.grColorMaskExt(rgba[RCOMP], rgba[GCOMP],
			 rgba[BCOMP], rgba[ACOMP]);
   }
   else {
      /* 16 bpp mode */
      /* we never have an alpha buffer */
      fxMesa->Glide.grColorMask(rgba[RCOMP] || rgba[GCOMP] || rgba[BCOMP], GL_FALSE);
   }
   UNLOCK_HARDWARE(fxMesa);
}

void
FX_grColorMaskv_NoLock(GLcontext *ctx, const GLboolean rgba[4])
{
   tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
   if (ctx->Visual->RedBits == 8) {
      /* 32bpp mode */
      ASSERT( fxMesa->Glide.grColorMaskExt );
      fxMesa->Glide.grColorMaskExt(rgba[RCOMP], rgba[GCOMP],
                                   rgba[BCOMP], rgba[ACOMP]);
   }
   else {
      /* 16 bpp mode */
      /* we never have an alpha buffer */
      fxMesa->Glide.grColorMask(rgba[RCOMP] || rgba[GCOMP] || rgba[BCOMP], GL_FALSE);
   }
}



FxBool
FX_grLfbLock(tdfxContextPtr fxMesa, GrLock_t type, GrBuffer_t buffer,
             GrLfbWriteMode_t writeMode, GrOriginLocation_t origin,
             FxBool pixelPipeline, GrLfbInfo_t * info)
{
   FxBool result;

   LOCK_HARDWARE(fxMesa);
   result = fxMesa->Glide.grLfbLock(type, buffer, writeMode,
                                    origin, pixelPipeline, info);
   UNLOCK_HARDWARE(fxMesa);
   return result;
}

FxU32
FX_grTexTextureMemRequired(tdfxContextPtr fxMesa, FxU32 evenOdd, GrTexInfo * info)
{
   FxU32 result;

   LOCK_HARDWARE(fxMesa);
   result = fxMesa->Glide.grTexTextureMemRequired(evenOdd, info);
   UNLOCK_HARDWARE(fxMesa);
   return result;
}

FxU32
FX_grTexMinAddress(tdfxContextPtr fxMesa, GrChipID_t tmu)
{
   FxU32 result;

   LOCK_HARDWARE(fxMesa);
   result = fxMesa->Glide.grTexMinAddress(tmu);
   UNLOCK_HARDWARE(fxMesa);
   return result;
}

extern FxU32
FX_grTexMaxAddress(tdfxContextPtr fxMesa, GrChipID_t tmu)
{
   FxU32 result;

   LOCK_HARDWARE(fxMesa);
   result = fxMesa->Glide.grTexMaxAddress(tmu);
   UNLOCK_HARDWARE(fxMesa);
   return result;
}


int
FX_getFogTableSize(tdfxContextPtr fxMesa)
{
   int result;
   LOCK_HARDWARE(fxMesa);
   fxMesa->Glide.grGet(GR_FOG_TABLE_ENTRIES, sizeof(int), (void *) &result);
   UNLOCK_HARDWARE(fxMesa);
   return result;
}

int
FX_getGrStateSize(tdfxContextPtr fxMesa)
{
   int result;
   LOCK_HARDWARE(fxMesa);
   fxMesa->Glide.grGet(GR_GLIDE_STATE_SIZE, sizeof(int), (void *) &result);
   UNLOCK_HARDWARE(fxMesa);
   return result;
}

void
FX_grAADrawLine(tdfxContextPtr fxMesa, GrVertex * a, GrVertex * b)
{
   /* ToDo */
   BEGIN_CLIP_LOOP(fxMesa);
   fxMesa->Glide.grDrawLine(a, b);
   END_CLIP_LOOP(fxMesa);
}

void
FX_grAADrawPoint(tdfxContextPtr fxMesa, GrVertex * a)
{
   BEGIN_CLIP_LOOP(fxMesa);
   fxMesa->Glide.grDrawPoint(a);
   END_CLIP_LOOP(fxMesa);
}

void
FX_grDrawPolygonVertexList(tdfxContextPtr fxMesa, int n, GrVertex * verts)
{
   BEGIN_CLIP_LOOP(fxMesa);
   fxMesa->Glide.grDrawVertexArrayContiguous(GR_POLYGON, n, verts, sizeof(GrVertex));
   END_CLIP_LOOP(fxMesa);
}

#if TDFX_USE_PARGB
void
FX_setupGrVertexLayout(tdfxContextPtr fxMesa)
{
   LOCK_HARDWARE(fxMesa);
   fxMesa->Glide.grReset(GR_VERTEX_PARAMETER);

   fxMesa->Glide.grCoordinateSpace(GR_WINDOW_COORDS);
   fxMesa->Glide.grVertexLayout(GR_PARAM_XY, GR_VERTEX_X_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_PARGB, GR_VERTEX_PARGB_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_Q, GR_VERTEX_OOW_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_Z, GR_VERTEX_OOZ_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_ST0, GR_VERTEX_SOW_TMU0_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_Q0, GR_VERTEX_OOW_TMU0_OFFSET << 2, GR_PARAM_DISABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_ST1, GR_VERTEX_SOW_TMU1_OFFSET << 2, GR_PARAM_DISABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_Q1, GR_VERTEX_OOW_TMU1_OFFSET << 2, GR_PARAM_DISABLE);
   UNLOCK_HARDWARE(fxMesa);
}
#else /* TDFX_USE_PARGB */
void
FX_setupGrVertexLayout(tdfxContextPtr fxMesa)
{
   LOCK_HARDWARE(fxMesa);
   fxMesa->Glide.grReset(GR_VERTEX_PARAMETER);

   fxMesa->Glide.grCoordinateSpace(GR_WINDOW_COORDS);
   fxMesa->Glide.grVertexLayout(GR_PARAM_XY, GR_VERTEX_X_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_RGB, GR_VERTEX_R_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_A, GR_VERTEX_A_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_Q, GR_VERTEX_OOW_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_Z, GR_VERTEX_OOZ_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_ST0, GR_VERTEX_SOW_TMU0_OFFSET << 2, GR_PARAM_ENABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_Q0, GR_VERTEX_OOW_TMU0_OFFSET << 2, GR_PARAM_DISABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_ST1, GR_VERTEX_SOW_TMU1_OFFSET << 2, GR_PARAM_DISABLE);
   fxMesa->Glide.grVertexLayout(GR_PARAM_Q1, GR_VERTEX_OOW_TMU1_OFFSET << 2, GR_PARAM_DISABLE);
   UNLOCK_HARDWARE(fxMesa);
}
#endif /* TDFX_USE_PARGB */

void
FX_grHints_NoLock(tdfxContextPtr fxMesa, GrHint_t hintType, FxU32 hintMask)
{
   switch (hintType) {
   case GR_HINT_STWHINT:
   {
      if (hintMask & GR_STWHINT_W_DIFF_TMU0)
	 fxMesa->Glide.grVertexLayout(GR_PARAM_Q0,
                                      GR_VERTEX_OOW_TMU0_OFFSET << 2,
                                      GR_PARAM_ENABLE);
      else
	 fxMesa->Glide.grVertexLayout(GR_PARAM_Q0,
                                      GR_VERTEX_OOW_TMU0_OFFSET << 2,
                                      GR_PARAM_DISABLE);

      if (hintMask & GR_STWHINT_ST_DIFF_TMU1)
	 fxMesa->Glide.grVertexLayout(GR_PARAM_ST1,
                                      GR_VERTEX_SOW_TMU1_OFFSET << 2,
                                      GR_PARAM_ENABLE);
      else
	 fxMesa->Glide.grVertexLayout(GR_PARAM_ST1,
                                      GR_VERTEX_SOW_TMU1_OFFSET << 2,
                                      GR_PARAM_DISABLE);

      if (hintMask & GR_STWHINT_W_DIFF_TMU1)
	 fxMesa->Glide.grVertexLayout(GR_PARAM_Q1,
                                      GR_VERTEX_OOW_TMU1_OFFSET << 2,
                                      GR_PARAM_ENABLE);
      else
	 fxMesa->Glide.grVertexLayout(GR_PARAM_Q1,
                                      GR_VERTEX_OOW_TMU1_OFFSET << 2,
                                      GR_PARAM_DISABLE);

   }
   }
}

void
FX_grHints(tdfxContextPtr fxMesa, GrHint_t hintType, FxU32 hintMask)
{
   LOCK_HARDWARE(fxMesa);
   FX_grHints_NoLock(fxMesa, hintType, hintMask);
   UNLOCK_HARDWARE(fxMesa);
}

/* It appears to me that this function is needed either way. */
FX_GrContext_t
FX_grSstWinOpen(tdfxContextPtr fxMesa,
                FxU32 hWnd,
                GrScreenResolution_t screen_resolution,
                GrScreenRefresh_t refresh_rate,
                GrColorFormat_t color_format,
                GrOriginLocation_t origin_location,
                int nColBuffers, int nAuxBuffers)
{
   FX_GrContext_t i;
   LOCK_HARDWARE(fxMesa);
   i = fxMesa->Glide.grSstWinOpen(hWnd,
                                  screen_resolution,
                                  refresh_rate,
                                  color_format, origin_location,
                                  nColBuffers, nAuxBuffers);

   /*
     fprintf(stderr,
     "grSstWinOpen( win %d res %d ref %d fmt %d\n"
     "              org %d ncol %d naux %d )\n"
     " ==> %d\n",
     hWnd,
     screen_resolution,
     refresh_rate,
     color_format,
     origin_location,
     nColBuffers,
     nAuxBuffers,
     i);
   */
   UNLOCK_HARDWARE(fxMesa);
   return i;
}