s/IntFormat/InternalFormat/ and s/Format/_BaseFormat/ for gl_color_table.
[mesa.git] / src / mesa / drivers / dri / tdfx / tdfx_tex.c
1 /* -*- mode: c; c-basic-offset: 3 -*-
2 *
3 * Copyright 2000 VA Linux Systems Inc., Fremont, California.
4 *
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * VA LINUX SYSTEMS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
23 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 */
26 /* $XFree86: xc/lib/GL/mesa/src/drv/tdfx/tdfx_tex.c,v 1.7 2002/11/05 17:46:10 tsi Exp $ */
27
28 /*
29 * New fixes:
30 * Daniel Borca <dborca@users.sourceforge.net>, 19 Jul 2004
31 *
32 * Original rewrite:
33 * Gareth Hughes <gareth@valinux.com>, 29 Sep - 1 Oct 2000
34 *
35 * Authors:
36 * Gareth Hughes <gareth@valinux.com>
37 * Brian Paul <brianp@valinux.com>
38 *
39 */
40
41
42 #include "enums.h"
43 #include "image.h"
44 #include "texcompress.h"
45 #include "texformat.h"
46 #include "teximage.h"
47 #include "texstore.h"
48 #include "texobj.h"
49 #include "tdfx_context.h"
50 #include "tdfx_tex.h"
51 #include "tdfx_texman.h"
52
53
54 /* no borders! can't halve 1x1! (stride > width * comp) not allowed */
55 void
56 _mesa_halve2x2_teximage2d ( GLcontext *ctx,
57 struct gl_texture_image *texImage,
58 GLuint bytesPerPixel,
59 GLint srcWidth, GLint srcHeight,
60 const GLvoid *srcImage, GLvoid *dstImage )
61 {
62 GLint i, j, k;
63 GLint dstWidth = srcWidth / 2;
64 GLint dstHeight = srcHeight / 2;
65 GLint srcRowStride = srcWidth * bytesPerPixel;
66 GLubyte *src = (GLubyte *)srcImage;
67 GLubyte *dst = dstImage;
68
69 GLuint bpt = 0;
70 GLubyte *_s = NULL;
71 GLubyte *_d = NULL;
72 GLenum _t = 0;
73
74 if (texImage->TexFormat->MesaFormat == MESA_FORMAT_RGB565) {
75 _t = GL_UNSIGNED_SHORT_5_6_5_REV;
76 bpt = bytesPerPixel;
77 } else if (texImage->TexFormat->MesaFormat == MESA_FORMAT_ARGB4444) {
78 _t = GL_UNSIGNED_SHORT_4_4_4_4_REV;
79 bpt = bytesPerPixel;
80 } else if (texImage->TexFormat->MesaFormat == MESA_FORMAT_ARGB1555) {
81 _t = GL_UNSIGNED_SHORT_1_5_5_5_REV;
82 bpt = bytesPerPixel;
83 }
84 if (bpt) {
85 bytesPerPixel = 4;
86 srcRowStride = srcWidth * bytesPerPixel;
87 if (dstWidth == 0) {
88 dstWidth = 1;
89 }
90 if (dstHeight == 0) {
91 dstHeight = 1;
92 }
93 _s = src = MALLOC(srcRowStride * srcHeight);
94 _d = dst = MALLOC(dstWidth * bytesPerPixel * dstHeight);
95 _mesa_texstore_rgba8888(ctx, 2, GL_RGBA,
96 &_mesa_texformat_rgba8888_rev, src,
97 0, 0, 0, /* dstX/Y/Zoffset */
98 srcRowStride, /* dstRowStride */
99 0, /* dstImageStride */
100 srcWidth, srcHeight, 1,
101 texImage->_BaseFormat, _t, srcImage, &ctx->DefaultPacking);
102 }
103
104 if (srcHeight == 1) {
105 for (i = 0; i < dstWidth; i++) {
106 for (k = 0; k < bytesPerPixel; k++) {
107 dst[0] = (src[0] + src[bytesPerPixel] + 1) / 2;
108 src++;
109 dst++;
110 }
111 src += bytesPerPixel;
112 }
113 } else if (srcWidth == 1) {
114 for (j = 0; j < dstHeight; j++) {
115 for (k = 0; k < bytesPerPixel; k++) {
116 dst[0] = (src[0] + src[srcRowStride] + 1) / 2;
117 src++;
118 dst++;
119 }
120 src += srcRowStride;
121 }
122 } else {
123 for (j = 0; j < dstHeight; j++) {
124 for (i = 0; i < dstWidth; i++) {
125 for (k = 0; k < bytesPerPixel; k++) {
126 dst[0] = (src[0] +
127 src[bytesPerPixel] +
128 src[srcRowStride] +
129 src[srcRowStride + bytesPerPixel] + 2) / 4;
130 src++;
131 dst++;
132 }
133 src += bytesPerPixel;
134 }
135 src += srcRowStride;
136 }
137 }
138
139 if (bpt) {
140 src = _s;
141 dst = _d;
142 texImage->TexFormat->StoreImage(ctx, 2, texImage->_BaseFormat,
143 texImage->TexFormat, dstImage,
144 0, 0, 0, /* dstX/Y/Zoffset */
145 dstWidth * bpt,
146 0, /* dstImageStride */
147 dstWidth, dstHeight, 1,
148 GL_BGRA, CHAN_TYPE, dst, &ctx->DefaultPacking);
149 FREE(dst);
150 FREE(src);
151 }
152 }
153
154
155 static int
156 logbase2(int n)
157 {
158 GLint i = 1;
159 GLint log2 = 0;
160
161 if (n < 0) {
162 return -1;
163 }
164
165 while (n > i) {
166 i *= 2;
167 log2++;
168 }
169 if (i != n) {
170 return -1;
171 }
172 else {
173 return log2;
174 }
175 }
176
177
178 /*
179 * Compute various texture image parameters.
180 * Input: w, h - source texture width and height
181 * Output: lodlevel - Glide lod level token for the larger texture dimension
182 * aspectratio - Glide aspect ratio token
183 * sscale - S scale factor used during triangle setup
184 * tscale - T scale factor used during triangle setup
185 * wscale - OpenGL -> Glide image width scale factor
186 * hscale - OpenGL -> Glide image height scale factor
187 *
188 * Sample results:
189 * w h lodlevel aspectRatio
190 * 128 128 GR_LOD_LOG2_128 (=7) GR_ASPECT_LOG2_1x1 (=0)
191 * 64 64 GR_LOD_LOG2_64 (=6) GR_ASPECT_LOG2_1x1 (=0)
192 * 64 32 GR_LOD_LOG2_64 (=6) GR_ASPECT_LOG2_2x1 (=1)
193 * 32 64 GR_LOD_LOG2_64 (=6) GR_ASPECT_LOG2_1x2 (=-1)
194 * 32 32 GR_LOD_LOG2_32 (=5) GR_ASPECT_LOG2_1x1 (=0)
195 */
196 static void
197 tdfxTexGetInfo(const GLcontext *ctx, int w, int h,
198 GrLOD_t *lodlevel, GrAspectRatio_t *aspectratio,
199 float *sscale, float *tscale,
200 int *wscale, int *hscale)
201 {
202 int logw, logh, ar, lod, ws, hs;
203 float s, t;
204
205 ASSERT(w >= 1);
206 ASSERT(h >= 1);
207
208 logw = logbase2(w);
209 logh = logbase2(h);
210 ar = logw - logh; /* aspect ratio = difference in log dimensions */
211 s = t = 256.0;
212 ws = hs = 1;
213
214 /* Hardware only allows a maximum aspect ratio of 8x1, so handle
215 |ar| > 3 by scaling the image and using an 8x1 aspect ratio */
216 if (ar >= 0) {
217 ASSERT(w >= h);
218 lod = logw;
219 if (ar <= GR_ASPECT_LOG2_8x1) {
220 t = 256 >> ar;
221 }
222 else {
223 /* have to stretch image height */
224 t = 32.0;
225 hs = 1 << (ar - 3);
226 ar = GR_ASPECT_LOG2_8x1;
227 }
228 }
229 else {
230 ASSERT(w < h);
231 lod = logh;
232 if (ar >= GR_ASPECT_LOG2_1x8) {
233 s = 256 >> -ar;
234 }
235 else {
236 /* have to stretch image width */
237 s = 32.0;
238 ws = 1 << (-ar - 3);
239 ar = GR_ASPECT_LOG2_1x8;
240 }
241 }
242
243 if (lodlevel)
244 *lodlevel = (GrLOD_t) lod;
245 if (aspectratio)
246 *aspectratio = (GrAspectRatio_t) ar;
247 if (sscale)
248 *sscale = s;
249 if (tscale)
250 *tscale = t;
251 if (wscale)
252 *wscale = ws;
253 if (hscale)
254 *hscale = hs;
255 }
256
257
258 /*
259 * We need to call this when a texture object's minification filter
260 * or texture image sizes change.
261 */
262 static void RevalidateTexture(GLcontext *ctx, struct gl_texture_object *tObj)
263 {
264 tdfxTexInfo *ti = TDFX_TEXTURE_DATA(tObj);
265 GLint minl, maxl;
266
267 if (!ti)
268 return;
269
270 minl = maxl = tObj->BaseLevel;
271
272 if (tObj->Image[0][minl]) {
273 maxl = MIN2(tObj->MaxLevel, tObj->Image[0][minl]->MaxLog2);
274
275 /* compute largeLodLog2, aspect ratio and texcoord scale factors */
276 tdfxTexGetInfo(ctx, tObj->Image[0][minl]->Width, tObj->Image[0][minl]->Height,
277 &ti->info.largeLodLog2,
278 &ti->info.aspectRatioLog2,
279 &(ti->sScale), &(ti->tScale), NULL, NULL);
280 }
281
282 if (tObj->Image[0][maxl] && (tObj->MinFilter != GL_NEAREST) && (tObj->MinFilter != GL_LINEAR)) {
283 /* mipmapping: need to compute smallLodLog2 */
284 tdfxTexGetInfo(ctx, tObj->Image[0][maxl]->Width,
285 tObj->Image[0][maxl]->Height,
286 &ti->info.smallLodLog2, NULL,
287 NULL, NULL, NULL, NULL);
288 }
289 else {
290 /* not mipmapping: smallLodLog2 = largeLodLog2 */
291 ti->info.smallLodLog2 = ti->info.largeLodLog2;
292 maxl = minl;
293 }
294
295 ti->minLevel = minl;
296 ti->maxLevel = maxl;
297 ti->info.data = NULL;
298
299 /* this is necessary because of fxDDCompressedTexImage2D */
300 if (ti->padded) {
301 struct gl_texture_image *texImage = tObj->Image[0][minl];
302 tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
303 if (mml->wScale != 1 || mml->hScale != 1) {
304 ti->sScale /= mml->wScale;
305 ti->tScale /= mml->hScale;
306 }
307 }
308 }
309
310
311 static tdfxTexInfo *
312 fxAllocTexObjData(tdfxContextPtr fxMesa)
313 {
314 tdfxTexInfo *ti;
315
316 if (!(ti = CALLOC(sizeof(tdfxTexInfo)))) {
317 _mesa_problem(NULL, "tdfx driver: out of memory");
318 return NULL;
319 }
320
321 ti->isInTM = GL_FALSE;
322
323 ti->whichTMU = TDFX_TMU_NONE;
324
325 ti->tm[TDFX_TMU0] = NULL;
326 ti->tm[TDFX_TMU1] = NULL;
327
328 ti->minFilt = GR_TEXTUREFILTER_POINT_SAMPLED;
329 ti->magFilt = GR_TEXTUREFILTER_BILINEAR;
330
331 ti->sClamp = GR_TEXTURECLAMP_WRAP;
332 ti->tClamp = GR_TEXTURECLAMP_WRAP;
333
334 ti->mmMode = GR_MIPMAP_NEAREST;
335 ti->LODblend = FXFALSE;
336
337 return ti;
338 }
339
340
341 /*
342 * Called via glBindTexture.
343 */
344 static void
345 tdfxBindTexture(GLcontext * ctx, GLenum target,
346 struct gl_texture_object *tObj)
347 {
348 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
349 tdfxTexInfo *ti;
350
351 if (MESA_VERBOSE & VERBOSE_DRIVER) {
352 fprintf(stderr, "fxmesa: fxDDTexBind(%d,%p)\n", tObj->Name,
353 tObj->DriverData);
354 }
355
356 if ((target != GL_TEXTURE_1D) && (target != GL_TEXTURE_2D))
357 return;
358
359 if (!tObj->DriverData) {
360 tObj->DriverData = fxAllocTexObjData(fxMesa);
361 }
362
363 ti = TDFX_TEXTURE_DATA(tObj);
364 ti->lastTimeUsed = fxMesa->texBindNumber++;
365
366 fxMesa->new_state |= TDFX_NEW_TEXTURE;
367 }
368
369
370 /*
371 * Called via glTexEnv.
372 */
373 static void
374 tdfxTexEnv(GLcontext * ctx, GLenum target, GLenum pname,
375 const GLfloat * param)
376 {
377 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
378
379 if ( TDFX_DEBUG & DEBUG_VERBOSE_API ) {
380 if (param)
381 fprintf(stderr, "fxmesa: texenv(%x,%x)\n", pname,
382 (GLint) (*param));
383 else
384 fprintf(stderr, "fxmesa: texenv(%x)\n", pname);
385 }
386
387 /* XXX this is a bit of a hack to force the Glide texture
388 * state to be updated.
389 */
390 fxMesa->TexState.EnvMode[ctx->Texture.CurrentUnit] = 0;
391
392 fxMesa->new_state |= TDFX_NEW_TEXTURE;
393 }
394
395
396 /*
397 * Called via glTexParameter.
398 */
399 static void
400 tdfxTexParameter(GLcontext * ctx, GLenum target,
401 struct gl_texture_object *tObj,
402 GLenum pname, const GLfloat * params)
403 {
404 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
405 GLenum param = (GLenum) (GLint) params[0];
406 tdfxTexInfo *ti;
407
408 if (MESA_VERBOSE & VERBOSE_DRIVER) {
409 fprintf(stderr, "fxmesa: fxDDTexParam(%d,%p,%x,%x)\n", tObj->Name,
410 tObj->DriverData, pname, param);
411 }
412
413 if ((target != GL_TEXTURE_1D) && (target != GL_TEXTURE_2D))
414 return;
415
416 if (!tObj->DriverData)
417 tObj->DriverData = fxAllocTexObjData(fxMesa);
418
419 ti = TDFX_TEXTURE_DATA(tObj);
420
421 switch (pname) {
422 case GL_TEXTURE_MIN_FILTER:
423 switch (param) {
424 case GL_NEAREST:
425 ti->mmMode = GR_MIPMAP_DISABLE;
426 ti->minFilt = GR_TEXTUREFILTER_POINT_SAMPLED;
427 ti->LODblend = FXFALSE;
428 break;
429 case GL_LINEAR:
430 ti->mmMode = GR_MIPMAP_DISABLE;
431 ti->minFilt = GR_TEXTUREFILTER_BILINEAR;
432 ti->LODblend = FXFALSE;
433 break;
434 case GL_NEAREST_MIPMAP_LINEAR:
435 if (!fxMesa->Glide.HaveCombineExt) {
436 if (fxMesa->haveTwoTMUs) {
437 ti->mmMode = GR_MIPMAP_NEAREST;
438 ti->LODblend = FXTRUE;
439 }
440 else {
441 ti->mmMode = GR_MIPMAP_NEAREST_DITHER;
442 ti->LODblend = FXFALSE;
443 }
444 ti->minFilt = GR_TEXTUREFILTER_POINT_SAMPLED;
445 break;
446 }
447 /* XXX Voodoo3/Banshee mipmap blending seems to produce
448 * incorrectly filtered colors for the smallest mipmap levels.
449 * To work-around we fall-through here and use a different filter.
450 */
451 case GL_NEAREST_MIPMAP_NEAREST:
452 ti->mmMode = GR_MIPMAP_NEAREST;
453 ti->minFilt = GR_TEXTUREFILTER_POINT_SAMPLED;
454 ti->LODblend = FXFALSE;
455 break;
456 case GL_LINEAR_MIPMAP_LINEAR:
457 if (!fxMesa->Glide.HaveCombineExt) {
458 if (fxMesa->haveTwoTMUs) {
459 ti->mmMode = GR_MIPMAP_NEAREST;
460 ti->LODblend = FXTRUE;
461 }
462 else {
463 ti->mmMode = GR_MIPMAP_NEAREST_DITHER;
464 ti->LODblend = FXFALSE;
465 }
466 ti->minFilt = GR_TEXTUREFILTER_BILINEAR;
467 break;
468 }
469 /* XXX Voodoo3/Banshee mipmap blending seems to produce
470 * incorrectly filtered colors for the smallest mipmap levels.
471 * To work-around we fall-through here and use a different filter.
472 */
473 case GL_LINEAR_MIPMAP_NEAREST:
474 ti->mmMode = GR_MIPMAP_NEAREST;
475 ti->minFilt = GR_TEXTUREFILTER_BILINEAR;
476 ti->LODblend = FXFALSE;
477 break;
478 default:
479 break;
480 }
481 ti->reloadImages = GL_TRUE;
482 RevalidateTexture(ctx, tObj);
483 fxMesa->new_state |= TDFX_NEW_TEXTURE;
484 break;
485
486 case GL_TEXTURE_MAG_FILTER:
487 switch (param) {
488 case GL_NEAREST:
489 ti->magFilt = GR_TEXTUREFILTER_POINT_SAMPLED;
490 break;
491 case GL_LINEAR:
492 ti->magFilt = GR_TEXTUREFILTER_BILINEAR;
493 break;
494 default:
495 break;
496 }
497 fxMesa->new_state |= TDFX_NEW_TEXTURE;
498 break;
499
500 case GL_TEXTURE_WRAP_S:
501 switch (param) {
502 case GL_CLAMP_TO_BORDER:
503 case GL_CLAMP_TO_EDGE:
504 case GL_CLAMP:
505 ti->sClamp = GR_TEXTURECLAMP_CLAMP;
506 break;
507 case GL_REPEAT:
508 ti->sClamp = GR_TEXTURECLAMP_WRAP;
509 break;
510 case GL_MIRRORED_REPEAT:
511 ti->sClamp = GR_TEXTURECLAMP_MIRROR_EXT;
512 break;
513 default:
514 break;
515 }
516 fxMesa->new_state |= TDFX_NEW_TEXTURE;
517 break;
518
519 case GL_TEXTURE_WRAP_T:
520 switch (param) {
521 case GL_CLAMP_TO_BORDER:
522 case GL_CLAMP_TO_EDGE:
523 case GL_CLAMP:
524 ti->tClamp = GR_TEXTURECLAMP_CLAMP;
525 break;
526 case GL_REPEAT:
527 ti->tClamp = GR_TEXTURECLAMP_WRAP;
528 break;
529 case GL_MIRRORED_REPEAT:
530 ti->tClamp = GR_TEXTURECLAMP_MIRROR_EXT;
531 break;
532 default:
533 break;
534 }
535 fxMesa->new_state |= TDFX_NEW_TEXTURE;
536 break;
537
538 case GL_TEXTURE_BORDER_COLOR:
539 /* TO DO */
540 break;
541 case GL_TEXTURE_MIN_LOD:
542 /* TO DO */
543 break;
544 case GL_TEXTURE_MAX_LOD:
545 /* TO DO */
546 break;
547 case GL_TEXTURE_BASE_LEVEL:
548 RevalidateTexture(ctx, tObj);
549 break;
550 case GL_TEXTURE_MAX_LEVEL:
551 RevalidateTexture(ctx, tObj);
552 break;
553
554 default:
555 break;
556 }
557 }
558
559
560 /*
561 * Called via glDeleteTextures to delete a texture object.
562 * Here, we delete the Glide data associated with the texture.
563 */
564 static void
565 tdfxDeleteTexture(GLcontext * ctx, struct gl_texture_object *tObj)
566 {
567 if (ctx && ctx->DriverCtx) {
568 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
569 tdfxTMFreeTexture(fxMesa, tObj);
570 fxMesa->new_state |= TDFX_NEW_TEXTURE;
571 /* Free mipmap images and the texture object itself */
572 _mesa_delete_texture_object(ctx, tObj);
573 }
574 }
575
576
577 /*
578 * Return true if texture is resident, false otherwise.
579 */
580 static GLboolean
581 tdfxIsTextureResident(GLcontext *ctx, struct gl_texture_object *tObj)
582 {
583 tdfxTexInfo *ti = TDFX_TEXTURE_DATA(tObj);
584 return (GLboolean) (ti && ti->isInTM);
585 }
586
587
588
589 /*
590 * Convert a gl_color_table texture palette to Glide's format.
591 */
592 static GrTexTable_t
593 convertPalette(FxU32 data[256], const struct gl_color_table *table)
594 {
595 const GLubyte *tableUB = (const GLubyte *) table->Table;
596 GLint width = table->Size;
597 FxU32 r, g, b, a;
598 GLint i;
599
600 ASSERT(table->Type == GL_UNSIGNED_BYTE);
601
602 switch (table->_BaseFormat) {
603 case GL_INTENSITY:
604 for (i = 0; i < width; i++) {
605 r = tableUB[i];
606 g = tableUB[i];
607 b = tableUB[i];
608 a = tableUB[i];
609 data[i] = (a << 24) | (r << 16) | (g << 8) | b;
610 }
611 return GR_TEXTABLE_PALETTE_6666_EXT;
612 case GL_LUMINANCE:
613 for (i = 0; i < width; i++) {
614 r = tableUB[i];
615 g = tableUB[i];
616 b = tableUB[i];
617 a = 255;
618 data[i] = (a << 24) | (r << 16) | (g << 8) | b;
619 }
620 return GR_TEXTABLE_PALETTE;
621 case GL_ALPHA:
622 for (i = 0; i < width; i++) {
623 r = g = b = 255;
624 a = tableUB[i];
625 data[i] = (a << 24) | (r << 16) | (g << 8) | b;
626 }
627 return GR_TEXTABLE_PALETTE_6666_EXT;
628 case GL_LUMINANCE_ALPHA:
629 for (i = 0; i < width; i++) {
630 r = g = b = tableUB[i * 2 + 0];
631 a = tableUB[i * 2 + 1];
632 data[i] = (a << 24) | (r << 16) | (g << 8) | b;
633 }
634 return GR_TEXTABLE_PALETTE_6666_EXT;
635 case GL_RGB:
636 for (i = 0; i < width; i++) {
637 r = tableUB[i * 3 + 0];
638 g = tableUB[i * 3 + 1];
639 b = tableUB[i * 3 + 2];
640 a = 255;
641 data[i] = (a << 24) | (r << 16) | (g << 8) | b;
642 }
643 return GR_TEXTABLE_PALETTE;
644 case GL_RGBA:
645 for (i = 0; i < width; i++) {
646 r = tableUB[i * 4 + 0];
647 g = tableUB[i * 4 + 1];
648 b = tableUB[i * 4 + 2];
649 a = tableUB[i * 4 + 3];
650 data[i] = (a << 24) | (r << 16) | (g << 8) | b;
651 }
652 return GR_TEXTABLE_PALETTE_6666_EXT;
653 default:
654 /* XXX fixme: how can this happen? */
655 _mesa_error(NULL, GL_INVALID_ENUM, "convertPalette: table->Format == %s",
656 _mesa_lookup_enum_by_nr(table->Format));
657 return GR_TEXTABLE_PALETTE;
658 }
659 }
660
661
662
663 static void
664 tdfxUpdateTexturePalette(GLcontext * ctx, struct gl_texture_object *tObj)
665 {
666 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
667
668 if (tObj) {
669 /* per-texture palette */
670 tdfxTexInfo *ti;
671
672 /* This might be a proxy texture. */
673 if (!tObj->Palette.Table)
674 return;
675
676 if (!tObj->DriverData)
677 tObj->DriverData = fxAllocTexObjData(fxMesa);
678 ti = TDFX_TEXTURE_DATA(tObj);
679 assert(ti);
680 ti->paltype = convertPalette(ti->palette.data, &tObj->Palette);
681 /*tdfxTexInvalidate(ctx, tObj);*/
682 }
683 else {
684 /* global texture palette */
685 fxMesa->TexPalette.Type = convertPalette(fxMesa->glbPalette.data, &ctx->Texture.Palette);
686 fxMesa->TexPalette.Data = &(fxMesa->glbPalette.data);
687 fxMesa->dirty |= TDFX_UPLOAD_TEXTURE_PALETTE;
688 }
689 fxMesa->new_state |= TDFX_NEW_TEXTURE; /* XXX too heavy-handed */
690 }
691
692
693 /**********************************************************************/
694 /**** NEW TEXTURE IMAGE FUNCTIONS ****/
695 /**********************************************************************/
696
697 #if 000
698 static FxBool TexusFatalError = FXFALSE;
699 static FxBool TexusError = FXFALSE;
700
701 #define TX_DITHER_NONE 0x00000000
702
703 static void
704 fxTexusError(const char *string, FxBool fatal)
705 {
706 _mesa_problem(NULL, string);
707 /*
708 * Just propagate the fatal value up.
709 */
710 TexusError = FXTRUE;
711 TexusFatalError = fatal;
712 }
713 #endif
714
715
716 static const struct gl_texture_format *
717 tdfxChooseTextureFormat( GLcontext *ctx, GLint internalFormat,
718 GLenum srcFormat, GLenum srcType )
719 {
720 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
721 const GLboolean allow32bpt = TDFX_IS_NAPALM(fxMesa);
722
723 switch (internalFormat) {
724 case GL_ALPHA:
725 case GL_ALPHA4:
726 case GL_ALPHA8:
727 case GL_ALPHA12:
728 case GL_ALPHA16:
729 case GL_COMPRESSED_ALPHA:
730 return &_mesa_texformat_a8;
731 case 1:
732 case GL_LUMINANCE:
733 case GL_LUMINANCE4:
734 case GL_LUMINANCE8:
735 case GL_LUMINANCE12:
736 case GL_LUMINANCE16:
737 case GL_COMPRESSED_LUMINANCE:
738 return &_mesa_texformat_l8;
739 case 2:
740 case GL_LUMINANCE_ALPHA:
741 case GL_LUMINANCE4_ALPHA4:
742 case GL_LUMINANCE6_ALPHA2:
743 case GL_LUMINANCE8_ALPHA8:
744 case GL_LUMINANCE12_ALPHA4:
745 case GL_LUMINANCE12_ALPHA12:
746 case GL_LUMINANCE16_ALPHA16:
747 case GL_COMPRESSED_LUMINANCE_ALPHA:
748 return &_mesa_texformat_al88;
749 case GL_INTENSITY:
750 case GL_INTENSITY4:
751 case GL_INTENSITY8:
752 case GL_INTENSITY12:
753 case GL_INTENSITY16:
754 case GL_COMPRESSED_INTENSITY:
755 return &_mesa_texformat_i8;
756 case GL_R3_G3_B2:
757 case GL_RGB4:
758 case GL_RGB5:
759 return &_mesa_texformat_rgb565;
760 case GL_COMPRESSED_RGB:
761 /* intentional fall-through */
762 case 3:
763 case GL_RGB:
764 if ( srcFormat == GL_RGB && srcType == GL_UNSIGNED_SHORT_5_6_5 ) {
765 return &_mesa_texformat_rgb565;
766 }
767 /* intentional fall through */
768 case GL_RGB8:
769 case GL_RGB10:
770 case GL_RGB12:
771 case GL_RGB16:
772 return (allow32bpt) ? &_mesa_texformat_argb8888
773 : &_mesa_texformat_rgb565;
774 case GL_RGBA2:
775 case GL_RGBA4:
776 return &_mesa_texformat_argb4444;
777 case GL_COMPRESSED_RGBA:
778 /* intentional fall-through */
779 case 4:
780 case GL_RGBA:
781 if ( srcFormat == GL_BGRA ) {
782 if ( srcType == GL_UNSIGNED_INT_8_8_8_8_REV ) {
783 return &_mesa_texformat_argb8888;
784 }
785 else if ( srcType == GL_UNSIGNED_SHORT_4_4_4_4_REV ) {
786 return &_mesa_texformat_argb4444;
787 }
788 else if ( srcType == GL_UNSIGNED_SHORT_1_5_5_5_REV ) {
789 return &_mesa_texformat_argb1555;
790 }
791 }
792 /* intentional fall through */
793 case GL_RGBA8:
794 case GL_RGB10_A2:
795 case GL_RGBA12:
796 case GL_RGBA16:
797 return allow32bpt ? &_mesa_texformat_argb8888
798 : &_mesa_texformat_argb4444;
799 case GL_RGB5_A1:
800 return &_mesa_texformat_argb1555;
801 case GL_COLOR_INDEX:
802 case GL_COLOR_INDEX1_EXT:
803 case GL_COLOR_INDEX2_EXT:
804 case GL_COLOR_INDEX4_EXT:
805 case GL_COLOR_INDEX8_EXT:
806 case GL_COLOR_INDEX12_EXT:
807 case GL_COLOR_INDEX16_EXT:
808 return &_mesa_texformat_ci8;
809 /* GL_EXT_texture_compression_s3tc */
810 /* GL_S3_s3tc */
811 case GL_COMPRESSED_RGB_S3TC_DXT1_EXT:
812 case GL_RGB_S3TC:
813 case GL_RGB4_S3TC:
814 return &_mesa_texformat_rgb_dxt1;
815 case GL_COMPRESSED_RGBA_S3TC_DXT1_EXT:
816 return &_mesa_texformat_rgba_dxt1;
817 case GL_COMPRESSED_RGBA_S3TC_DXT3_EXT:
818 case GL_RGBA_S3TC:
819 case GL_RGBA4_S3TC:
820 return &_mesa_texformat_rgba_dxt3;
821 case GL_COMPRESSED_RGBA_S3TC_DXT5_EXT:
822 return &_mesa_texformat_rgba_dxt5;
823 /* GL_3DFX_texture_compression_FXT1 */
824 case GL_COMPRESSED_RGB_FXT1_3DFX:
825 return &_mesa_texformat_rgb_fxt1;
826 case GL_COMPRESSED_RGBA_FXT1_3DFX:
827 return &_mesa_texformat_rgba_fxt1;
828 default:
829 _mesa_problem(ctx, "unexpected format in tdfxChooseTextureFormat");
830 return NULL;
831 }
832 }
833
834
835 /*
836 * Return the Glide format for the given mesa texture format.
837 */
838 static GrTextureFormat_t
839 fxGlideFormat(GLint mesaFormat)
840 {
841 switch (mesaFormat) {
842 case MESA_FORMAT_I8:
843 return GR_TEXFMT_ALPHA_8;
844 case MESA_FORMAT_A8:
845 return GR_TEXFMT_ALPHA_8;
846 case MESA_FORMAT_L8:
847 return GR_TEXFMT_INTENSITY_8;
848 case MESA_FORMAT_CI8:
849 return GR_TEXFMT_P_8;
850 case MESA_FORMAT_AL88:
851 return GR_TEXFMT_ALPHA_INTENSITY_88;
852 case MESA_FORMAT_RGB565:
853 return GR_TEXFMT_RGB_565;
854 case MESA_FORMAT_ARGB4444:
855 return GR_TEXFMT_ARGB_4444;
856 case MESA_FORMAT_ARGB1555:
857 return GR_TEXFMT_ARGB_1555;
858 case MESA_FORMAT_ARGB8888:
859 return GR_TEXFMT_ARGB_8888;
860 case MESA_FORMAT_RGB_FXT1:
861 case MESA_FORMAT_RGBA_FXT1:
862 return GR_TEXFMT_ARGB_CMP_FXT1;
863 case MESA_FORMAT_RGB_DXT1:
864 case MESA_FORMAT_RGBA_DXT1:
865 return GR_TEXFMT_ARGB_CMP_DXT1;
866 case MESA_FORMAT_RGBA_DXT3:
867 return GR_TEXFMT_ARGB_CMP_DXT3;
868 case MESA_FORMAT_RGBA_DXT5:
869 return GR_TEXFMT_ARGB_CMP_DXT5;
870 default:
871 _mesa_problem(NULL, "Unexpected format in fxGlideFormat");
872 return 0;
873 }
874 }
875
876
877 /* Texel-fetch functions for software texturing and glGetTexImage().
878 * We should have been able to use some "standard" fetch functions (which
879 * may get defined in texutil.c) but we have to account for scaled texture
880 * images on tdfx hardware (the 8:1 aspect ratio limit).
881 * Hence, we need special functions here.
882 */
883 extern void
884 fxt1_decode_1 (const void *texture, int width,
885 int i, int j, unsigned char *rgba);
886
887 static void
888 fetch_intensity8(const struct gl_texture_image *texImage,
889 GLint i, GLint j, GLint k, GLchan * rgba)
890 {
891 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
892 const GLubyte *texel;
893
894 i = i * mml->wScale;
895 j = j * mml->hScale;
896
897 texel = ((GLubyte *) texImage->Data) + j * mml->width + i;
898 rgba[RCOMP] = *texel;
899 rgba[GCOMP] = *texel;
900 rgba[BCOMP] = *texel;
901 rgba[ACOMP] = *texel;
902 }
903
904
905 static void
906 fetch_luminance8(const struct gl_texture_image *texImage,
907 GLint i, GLint j, GLint k, GLchan * rgba)
908 {
909 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
910 const GLubyte *texel;
911
912 i = i * mml->wScale;
913 j = j * mml->hScale;
914
915 texel = ((GLubyte *) texImage->Data) + j * mml->width + i;
916 rgba[RCOMP] = *texel;
917 rgba[GCOMP] = *texel;
918 rgba[BCOMP] = *texel;
919 rgba[ACOMP] = 255;
920 }
921
922
923 static void
924 fetch_alpha8(const struct gl_texture_image *texImage,
925 GLint i, GLint j, GLint k, GLchan * rgba)
926 {
927 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
928 const GLubyte *texel;
929
930 i = i * mml->wScale;
931 j = j * mml->hScale;
932
933 texel = ((GLubyte *) texImage->Data) + j * mml->width + i;
934 rgba[RCOMP] = 255;
935 rgba[GCOMP] = 255;
936 rgba[BCOMP] = 255;
937 rgba[ACOMP] = *texel;
938 }
939
940
941 static void
942 fetch_index8(const struct gl_texture_image *texImage,
943 GLint i, GLint j, GLint k, GLchan * indexOut)
944 {
945 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
946 const GLubyte *texel;
947
948 i = i * mml->wScale;
949 j = j * mml->hScale;
950
951 texel = ((GLubyte *) texImage->Data) + j * mml->width + i;
952 *indexOut = *texel;
953 }
954
955
956 static void
957 fetch_luminance8_alpha8(const struct gl_texture_image *texImage,
958 GLint i, GLint j, GLint k, GLchan * rgba)
959 {
960 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
961 const GLubyte *texel;
962
963 i = i * mml->wScale;
964 j = j * mml->hScale;
965
966 texel = ((GLubyte *) texImage->Data) + (j * mml->width + i) * 2;
967 rgba[RCOMP] = texel[0];
968 rgba[GCOMP] = texel[0];
969 rgba[BCOMP] = texel[0];
970 rgba[ACOMP] = texel[1];
971 }
972
973
974 static void
975 fetch_r5g6b5(const struct gl_texture_image *texImage,
976 GLint i, GLint j, GLint k, GLchan * rgba)
977 {
978 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
979 const GLushort *texel;
980
981 i = i * mml->wScale;
982 j = j * mml->hScale;
983
984 texel = ((GLushort *) texImage->Data) + j * mml->width + i;
985 rgba[RCOMP] = (((*texel) >> 11) & 0x1f) * 255 / 31;
986 rgba[GCOMP] = (((*texel) >> 5) & 0x3f) * 255 / 63;
987 rgba[BCOMP] = (((*texel) >> 0) & 0x1f) * 255 / 31;
988 rgba[ACOMP] = 255;
989 }
990
991
992 static void
993 fetch_r4g4b4a4(const struct gl_texture_image *texImage,
994 GLint i, GLint j, GLint k, GLchan * rgba)
995 {
996 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
997 const GLushort *texel;
998
999 i = i * mml->wScale;
1000 j = j * mml->hScale;
1001
1002 texel = ((GLushort *) texImage->Data) + j * mml->width + i;
1003 rgba[RCOMP] = (((*texel) >> 12) & 0xf) * 255 / 15;
1004 rgba[GCOMP] = (((*texel) >> 8) & 0xf) * 255 / 15;
1005 rgba[BCOMP] = (((*texel) >> 4) & 0xf) * 255 / 15;
1006 rgba[ACOMP] = (((*texel) >> 0) & 0xf) * 255 / 15;
1007 }
1008
1009
1010 static void
1011 fetch_r5g5b5a1(const struct gl_texture_image *texImage,
1012 GLint i, GLint j, GLint k, GLchan * rgba)
1013 {
1014 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
1015 const GLushort *texel;
1016
1017 i = i * mml->wScale;
1018 j = j * mml->hScale;
1019
1020 texel = ((GLushort *) texImage->Data) + j * mml->width + i;
1021 rgba[RCOMP] = (((*texel) >> 11) & 0x1f) * 255 / 31;
1022 rgba[GCOMP] = (((*texel) >> 6) & 0x1f) * 255 / 31;
1023 rgba[BCOMP] = (((*texel) >> 1) & 0x1f) * 255 / 31;
1024 rgba[ACOMP] = (((*texel) >> 0) & 0x01) * 255;
1025 }
1026
1027
1028 static void
1029 fetch_a8r8g8b8(const struct gl_texture_image *texImage,
1030 GLint i, GLint j, GLint k, GLchan * rgba)
1031 {
1032 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
1033 const GLuint *texel;
1034
1035 i = i * mml->wScale;
1036 j = j * mml->hScale;
1037
1038 texel = ((GLuint *) texImage->Data) + j * mml->width + i;
1039 rgba[RCOMP] = (((*texel) >> 16) & 0xff);
1040 rgba[GCOMP] = (((*texel) >> 8) & 0xff);
1041 rgba[BCOMP] = (((*texel) ) & 0xff);
1042 rgba[ACOMP] = (((*texel) >> 24) & 0xff);
1043 }
1044
1045
1046 static void
1047 fetch_rgb_fxt1(const struct gl_texture_image *texImage,
1048 GLint i, GLint j, GLint k, GLchan *rgba)
1049 {
1050 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
1051
1052 i = i * mml->wScale;
1053 j = j * mml->hScale;
1054
1055 fxt1_decode_1(texImage->Data, mml->width, i, j, rgba);
1056 rgba[ACOMP] = 255;
1057 }
1058
1059
1060 static void
1061 fetch_rgba_fxt1(const struct gl_texture_image *texImage,
1062 GLint i, GLint j, GLint k, GLchan *rgba)
1063 {
1064 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
1065
1066 i = i * mml->wScale;
1067 j = j * mml->hScale;
1068
1069 fxt1_decode_1(texImage->Data, mml->width, i, j, rgba);
1070 }
1071
1072
1073 static void
1074 fetch_rgb_dxt1(const struct gl_texture_image *texImage,
1075 GLint i, GLint j, GLint k, GLchan *rgba)
1076 {
1077 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
1078
1079 i = i * mml->wScale;
1080 j = j * mml->hScale;
1081
1082 _mesa_texformat_rgb_dxt1.FetchTexel2D(texImage, i, j, k, rgba);
1083 }
1084
1085
1086 static void
1087 fetch_rgba_dxt1(const struct gl_texture_image *texImage,
1088 GLint i, GLint j, GLint k, GLchan *rgba)
1089 {
1090 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
1091
1092 i = i * mml->wScale;
1093 j = j * mml->hScale;
1094
1095 _mesa_texformat_rgba_dxt1.FetchTexel2D(texImage, i, j, k, rgba);
1096 }
1097
1098
1099 static void
1100 fetch_rgba_dxt3(const struct gl_texture_image *texImage,
1101 GLint i, GLint j, GLint k, GLchan *rgba)
1102 {
1103 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
1104
1105 i = i * mml->wScale;
1106 j = j * mml->hScale;
1107
1108 _mesa_texformat_rgba_dxt3.FetchTexel2D(texImage, i, j, k, rgba);
1109 }
1110
1111
1112 static void
1113 fetch_rgba_dxt5(const struct gl_texture_image *texImage,
1114 GLint i, GLint j, GLint k, GLchan *rgba)
1115 {
1116 const tdfxMipMapLevel *mml = TDFX_TEXIMAGE_DATA(texImage);
1117
1118 i = i * mml->wScale;
1119 j = j * mml->hScale;
1120
1121 _mesa_texformat_rgba_dxt5.FetchTexel2D(texImage, i, j, k, rgba);
1122 }
1123
1124
1125 static FetchTexelFuncC
1126 fxFetchFunction(GLint mesaFormat)
1127 {
1128 switch (mesaFormat) {
1129 case MESA_FORMAT_I8:
1130 return &fetch_intensity8;
1131 case MESA_FORMAT_A8:
1132 return &fetch_alpha8;
1133 case MESA_FORMAT_L8:
1134 return &fetch_luminance8;
1135 case MESA_FORMAT_CI8:
1136 return &fetch_index8;
1137 case MESA_FORMAT_AL88:
1138 return &fetch_luminance8_alpha8;
1139 case MESA_FORMAT_RGB565:
1140 return &fetch_r5g6b5;
1141 case MESA_FORMAT_ARGB4444:
1142 return &fetch_r4g4b4a4;
1143 case MESA_FORMAT_ARGB1555:
1144 return &fetch_r5g5b5a1;
1145 case MESA_FORMAT_ARGB8888:
1146 return &fetch_a8r8g8b8;
1147 case MESA_FORMAT_RGB_FXT1:
1148 return &fetch_rgb_fxt1;
1149 case MESA_FORMAT_RGBA_FXT1:
1150 return &fetch_rgba_fxt1;
1151 case MESA_FORMAT_RGB_DXT1:
1152 return &fetch_rgb_dxt1;
1153 case MESA_FORMAT_RGBA_DXT1:
1154 return &fetch_rgba_dxt1;
1155 case MESA_FORMAT_RGBA_DXT3:
1156 return &fetch_rgba_dxt3;
1157 case MESA_FORMAT_RGBA_DXT5:
1158 return &fetch_rgba_dxt5;
1159 default:
1160 _mesa_problem(NULL, "Unexpected format in fxFetchFunction");
1161 return NULL;
1162 }
1163 }
1164
1165
1166 static GLboolean
1167 adjust2DRatio (GLcontext *ctx,
1168 GLint xoffset, GLint yoffset,
1169 GLint width, GLint height,
1170 GLenum format, GLenum type, const GLvoid *pixels,
1171 const struct gl_pixelstore_attrib *packing,
1172 tdfxMipMapLevel *mml,
1173 struct gl_texture_image *texImage,
1174 GLint texelBytes,
1175 GLint dstRowStride)
1176 {
1177 const GLint newWidth = width * mml->wScale;
1178 const GLint newHeight = height * mml->hScale;
1179 GLvoid *tempImage;
1180
1181 if (!texImage->IsCompressed) {
1182 GLubyte *destAddr;
1183 tempImage = MALLOC(width * height * texelBytes);
1184 if (!tempImage) {
1185 return GL_FALSE;
1186 }
1187
1188 texImage->TexFormat->StoreImage(ctx, 2, texImage->_BaseFormat,
1189 texImage->TexFormat, tempImage,
1190 0, 0, 0, /* dstX/Y/Zoffset */
1191 width * texelBytes, /* dstRowStride */
1192 0, /* dstImageStride */
1193 width, height, 1,
1194 format, type, pixels, packing);
1195
1196 /* now rescale */
1197 /* compute address of dest subimage within the overal tex image */
1198 destAddr = (GLubyte *) texImage->Data
1199 + (yoffset * mml->hScale * mml->width
1200 + xoffset * mml->wScale) * texelBytes;
1201
1202 _mesa_rescale_teximage2d(texelBytes,
1203 width,
1204 dstRowStride, /* dst stride */
1205 width, height,
1206 newWidth, newHeight,
1207 tempImage, destAddr);
1208 } else {
1209 const GLint rawBytes = 4;
1210 GLvoid *rawImage = MALLOC(width * height * rawBytes);
1211 if (!rawImage) {
1212 return GL_FALSE;
1213 }
1214 tempImage = MALLOC(newWidth * newHeight * rawBytes);
1215 if (!tempImage) {
1216 return GL_FALSE;
1217 }
1218 /* unpack image, apply transfer ops and store in rawImage */
1219 _mesa_texstore_rgba8888(ctx, 2, GL_RGBA,
1220 &_mesa_texformat_rgba8888_rev, rawImage,
1221 0, 0, 0, /* dstX/Y/Zoffset */
1222 width * rawBytes, /* dstRowStride */
1223 0, /* dstImageStride */
1224 width, height, 1,
1225 format, type, pixels, packing);
1226 _mesa_rescale_teximage2d(rawBytes,
1227 width,
1228 newWidth * rawBytes, /* dst stride */
1229 width, height, /* src */
1230 newWidth, newHeight, /* dst */
1231 rawImage /*src*/, tempImage /*dst*/ );
1232 texImage->TexFormat->StoreImage(ctx, 2, texImage->_BaseFormat,
1233 texImage->TexFormat, texImage->Data,
1234 xoffset * mml->wScale, yoffset * mml->hScale, 0, /* dstX/Y/Zoffset */
1235 dstRowStride,
1236 0, /* dstImageStride */
1237 newWidth, newHeight, 1,
1238 GL_RGBA, CHAN_TYPE, tempImage, &ctx->DefaultPacking);
1239 FREE(rawImage);
1240 }
1241
1242 FREE(tempImage);
1243
1244 return GL_TRUE;
1245 }
1246
1247
1248 static void
1249 tdfxTexImage2D(GLcontext *ctx, GLenum target, GLint level,
1250 GLint internalFormat, GLint width, GLint height, GLint border,
1251 GLenum format, GLenum type, const GLvoid *pixels,
1252 const struct gl_pixelstore_attrib *packing,
1253 struct gl_texture_object *texObj,
1254 struct gl_texture_image *texImage)
1255 {
1256 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
1257 tdfxTexInfo *ti;
1258 tdfxMipMapLevel *mml;
1259 GLint texelBytes, dstRowStride;
1260
1261 /*
1262 printf("TexImage id=%d int 0x%x format 0x%x type 0x%x %dx%d\n",
1263 texObj->Name, texImage->InternalFormat, format, type,
1264 texImage->Width, texImage->Height);
1265 */
1266
1267 ti = TDFX_TEXTURE_DATA(texObj);
1268 if (!ti) {
1269 texObj->DriverData = fxAllocTexObjData(fxMesa);
1270 if (!texObj->DriverData) {
1271 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage2D");
1272 return;
1273 }
1274 ti = TDFX_TEXTURE_DATA(texObj);
1275 }
1276 assert(ti);
1277
1278 mml = TDFX_TEXIMAGE_DATA(texImage);
1279 if (!mml) {
1280 texImage->DriverData = CALLOC(sizeof(tdfxMipMapLevel));
1281 if (!texImage->DriverData) {
1282 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage2D");
1283 return;
1284 }
1285 mml = TDFX_TEXIMAGE_DATA(texImage);
1286 }
1287
1288 /* Determine width and height scale factors for texture.
1289 * Remember, Glide is limited to 8:1 aspect ratios.
1290 */
1291 tdfxTexGetInfo(ctx,
1292 texImage->Width, texImage->Height,
1293 NULL, /* lod level */
1294 NULL, /* aspect ratio */
1295 NULL, NULL, /* sscale, tscale */
1296 &mml->wScale, &mml->hScale);
1297
1298 /* rescaled size: */
1299 mml->width = width * mml->wScale;
1300 mml->height = height * mml->hScale;
1301
1302 #if FX_COMPRESS_S3TC_AS_FXT1_HACK
1303 /* [koolsmoky] substitute FXT1 for DXTn and Legacy S3TC */
1304 /* [dBorca] we should update texture's attribute, then,
1305 * because if the application asks us to decompress, we
1306 * have to know the REAL format! Also, DXT3/5 might not
1307 * be correct, since it would mess with "compressedSize".
1308 * Ditto for GL_RGBA[4]_S3TC, which is always mapped to DXT3.
1309 */
1310 if (texImage->IsCompressed) {
1311 switch (internalFormat) {
1312 case GL_COMPRESSED_RGB_S3TC_DXT1_EXT:
1313 case GL_RGB_S3TC:
1314 case GL_RGB4_S3TC:
1315 internalFormat = GL_COMPRESSED_RGB_FXT1_3DFX;
1316 break;
1317 case GL_COMPRESSED_RGBA_S3TC_DXT1_EXT:
1318 case GL_COMPRESSED_RGBA_S3TC_DXT3_EXT:
1319 case GL_COMPRESSED_RGBA_S3TC_DXT5_EXT:
1320 case GL_RGBA_S3TC:
1321 case GL_RGBA4_S3TC:
1322 internalFormat = GL_COMPRESSED_RGBA_FXT1_3DFX;
1323 }
1324 texImage->InternalFormat = internalFormat;
1325 }
1326 #endif
1327 #if FX_TC_NAPALM
1328 if (fxMesa->type >= GR_SSTTYPE_Voodoo4) {
1329 GLenum texNapalm = 0;
1330 if (internalFormat == GL_COMPRESSED_RGB) {
1331 texNapalm = GL_COMPRESSED_RGB_FXT1_3DFX;
1332 } else if (internalFormat == GL_COMPRESSED_RGBA) {
1333 texNapalm = GL_COMPRESSED_RGBA_FXT1_3DFX;
1334 }
1335 if (texNapalm) {
1336 texImage->InternalFormat = internalFormat = texNapalm;
1337 texImage->IsCompressed = GL_TRUE;
1338 }
1339 }
1340 #endif
1341
1342 /* choose the texture format */
1343 assert(ctx->Driver.ChooseTextureFormat);
1344 texImage->TexFormat = (*ctx->Driver.ChooseTextureFormat)(ctx,
1345 internalFormat, format, type);
1346 assert(texImage->TexFormat);
1347 mml->glideFormat = fxGlideFormat(texImage->TexFormat->MesaFormat);
1348 ti->info.format = mml->glideFormat;
1349 texImage->FetchTexelc = fxFetchFunction(texImage->TexFormat->MesaFormat);
1350 texelBytes = texImage->TexFormat->TexelBytes;
1351
1352 if (texImage->IsCompressed) {
1353 texImage->CompressedSize = _mesa_compressed_texture_size(ctx,
1354 mml->width,
1355 mml->height,
1356 1,
1357 internalFormat);
1358 dstRowStride = _mesa_compressed_row_stride(internalFormat, mml->width);
1359 texImage->Data = _mesa_malloc(texImage->CompressedSize);
1360 } else {
1361 dstRowStride = mml->width * texelBytes;
1362 texImage->Data = _mesa_malloc(mml->width * mml->height * texelBytes);
1363 }
1364 if (!texImage->Data) {
1365 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage2D");
1366 return;
1367 }
1368
1369 if (pixels != NULL) {
1370 if (mml->wScale != 1 || mml->hScale != 1) {
1371 /* rescale image to overcome 1:8 aspect limitation */
1372 if (!adjust2DRatio(ctx,
1373 0, 0,
1374 width, height,
1375 format, type, pixels,
1376 packing,
1377 mml,
1378 texImage,
1379 texelBytes,
1380 dstRowStride)
1381 ) {
1382 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage2D");
1383 return;
1384 }
1385 }
1386 else {
1387 /* no rescaling needed */
1388 /* unpack image, apply transfer ops and store in texImage->Data */
1389 texImage->TexFormat->StoreImage(ctx, 2, texImage->_BaseFormat,
1390 texImage->TexFormat, texImage->Data,
1391 0, 0, 0, /* dstX/Y/Zoffset */
1392 dstRowStride,
1393 0, /* dstImageStride */
1394 width, height, 1,
1395 format, type, pixels, packing);
1396 }
1397
1398 /* GL_SGIS_generate_mipmap */
1399 if (level == texObj->BaseLevel && texObj->GenerateMipmap) {
1400 GLint mipWidth, mipHeight;
1401 tdfxMipMapLevel *mip;
1402 struct gl_texture_image *mipImage;
1403 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[ctx->Texture.CurrentUnit];
1404 const GLint maxLevels = _mesa_max_texture_levels(ctx, texObj->Target);
1405
1406 assert(!texImage->IsCompressed);
1407
1408 while (level < texObj->MaxLevel && level < maxLevels - 1) {
1409 mipWidth = width / 2;
1410 if (!mipWidth) {
1411 mipWidth = 1;
1412 }
1413 mipHeight = height / 2;
1414 if (!mipHeight) {
1415 mipHeight = 1;
1416 }
1417 if ((mipWidth == width) && (mipHeight == height)) {
1418 break;
1419 }
1420 _mesa_TexImage2D(target, ++level, internalFormat,
1421 mipWidth, mipHeight, border,
1422 format, type,
1423 NULL);
1424 mipImage = _mesa_select_tex_image(ctx, texUnit, target, level);
1425 mip = TDFX_TEXIMAGE_DATA(mipImage);
1426 _mesa_halve2x2_teximage2d(ctx,
1427 texImage,
1428 texelBytes,
1429 mml->width, mml->height,
1430 texImage->Data, mipImage->Data);
1431 texImage = mipImage;
1432 mml = mip;
1433 width = mipWidth;
1434 height = mipHeight;
1435 }
1436 }
1437 }
1438
1439 RevalidateTexture(ctx, texObj);
1440
1441 ti->reloadImages = GL_TRUE;
1442 fxMesa->new_state |= TDFX_NEW_TEXTURE;
1443 }
1444
1445
1446 static void
1447 tdfxTexSubImage2D(GLcontext *ctx, GLenum target, GLint level,
1448 GLint xoffset, GLint yoffset,
1449 GLsizei width, GLsizei height,
1450 GLenum format, GLenum type,
1451 const GLvoid *pixels,
1452 const struct gl_pixelstore_attrib *packing,
1453 struct gl_texture_object *texObj,
1454 struct gl_texture_image *texImage )
1455 {
1456 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
1457 tdfxTexInfo *ti;
1458 tdfxMipMapLevel *mml;
1459 GLint texelBytes, dstRowStride;
1460
1461 if (!texObj->DriverData) {
1462 _mesa_problem(ctx, "problem in fxDDTexSubImage2D");
1463 return;
1464 }
1465
1466 ti = TDFX_TEXTURE_DATA(texObj);
1467 assert(ti);
1468 mml = TDFX_TEXIMAGE_DATA(texImage);
1469 assert(mml);
1470
1471 assert(texImage->Data); /* must have an existing texture image! */
1472 assert(texImage->_BaseFormat);
1473
1474 texelBytes = texImage->TexFormat->TexelBytes;
1475 if (texImage->IsCompressed) {
1476 dstRowStride = _mesa_compressed_row_stride(texImage->InternalFormat, mml->width);
1477 } else {
1478 dstRowStride = mml->width * texelBytes;
1479 }
1480
1481 if (mml->wScale != 1 || mml->hScale != 1) {
1482 /* need to rescale subimage to match mipmap level's rescale factors */
1483 if (!adjust2DRatio(ctx,
1484 xoffset, yoffset,
1485 width, height,
1486 format, type, pixels,
1487 packing,
1488 mml,
1489 texImage,
1490 texelBytes,
1491 dstRowStride)
1492 ) {
1493 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexSubImage2D");
1494 return;
1495 }
1496 }
1497 else {
1498 /* no rescaling needed */
1499 texImage->TexFormat->StoreImage(ctx, 2, texImage->_BaseFormat,
1500 texImage->TexFormat, texImage->Data,
1501 xoffset, yoffset, 0,
1502 dstRowStride,
1503 0, /* dstImageStride */
1504 width, height, 1,
1505 format, type, pixels, packing);
1506 }
1507
1508 /* GL_SGIS_generate_mipmap */
1509 if (level == texObj->BaseLevel && texObj->GenerateMipmap) {
1510 GLint mipWidth, mipHeight;
1511 tdfxMipMapLevel *mip;
1512 struct gl_texture_image *mipImage;
1513 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[ctx->Texture.CurrentUnit];
1514 const GLint maxLevels = _mesa_max_texture_levels(ctx, texObj->Target);
1515
1516 assert(!texImage->IsCompressed);
1517
1518 width = texImage->Width;
1519 height = texImage->Height;
1520 while (level < texObj->MaxLevel && level < maxLevels - 1) {
1521 mipWidth = width / 2;
1522 if (!mipWidth) {
1523 mipWidth = 1;
1524 }
1525 mipHeight = height / 2;
1526 if (!mipHeight) {
1527 mipHeight = 1;
1528 }
1529 if ((mipWidth == width) && (mipHeight == height)) {
1530 break;
1531 }
1532 ++level;
1533 mipImage = _mesa_select_tex_image(ctx, texUnit, target, level);
1534 mip = TDFX_TEXIMAGE_DATA(mipImage);
1535 _mesa_halve2x2_teximage2d(ctx,
1536 texImage,
1537 texelBytes,
1538 mml->width, mml->height,
1539 texImage->Data, mipImage->Data);
1540 texImage = mipImage;
1541 mml = mip;
1542 width = mipWidth;
1543 height = mipHeight;
1544 }
1545 }
1546
1547 ti->reloadImages = GL_TRUE; /* signal the image needs to be reloaded */
1548 fxMesa->new_state |= TDFX_NEW_TEXTURE; /* XXX this might be a bit much */
1549 }
1550
1551
1552 static void
1553 tdfxTexImage1D(GLcontext *ctx, GLenum target, GLint level,
1554 GLint internalFormat, GLint width, GLint border,
1555 GLenum format, GLenum type, const GLvoid *pixels,
1556 const struct gl_pixelstore_attrib *packing,
1557 struct gl_texture_object *texObj,
1558 struct gl_texture_image *texImage)
1559 {
1560 tdfxTexImage2D(ctx, target, level,
1561 internalFormat, width, 1, border,
1562 format, type, pixels,
1563 packing,
1564 texObj,
1565 texImage);
1566 }
1567
1568 static void
1569 tdfxTexSubImage1D(GLcontext *ctx, GLenum target, GLint level,
1570 GLint xoffset,
1571 GLsizei width,
1572 GLenum format, GLenum type,
1573 const GLvoid *pixels,
1574 const struct gl_pixelstore_attrib *packing,
1575 struct gl_texture_object *texObj,
1576 struct gl_texture_image *texImage )
1577 {
1578 tdfxTexSubImage2D(ctx, target, level,
1579 xoffset, 0,
1580 width, 1,
1581 format, type,
1582 pixels,
1583 packing,
1584 texObj,
1585 texImage);
1586 }
1587
1588 /**********************************************************************/
1589 /**** COMPRESSED TEXTURE IMAGE FUNCTIONS ****/
1590 /**********************************************************************/
1591
1592 static void
1593 tdfxCompressedTexImage2D (GLcontext *ctx, GLenum target,
1594 GLint level, GLint internalFormat,
1595 GLsizei width, GLsizei height, GLint border,
1596 GLsizei imageSize, const GLvoid *data,
1597 struct gl_texture_object *texObj,
1598 struct gl_texture_image *texImage)
1599 {
1600 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
1601 tdfxTexInfo *ti;
1602 tdfxMipMapLevel *mml;
1603
1604 if (TDFX_DEBUG & DEBUG_VERBOSE_DRI) {
1605 fprintf(stderr, "tdfxCompressedTexImage2D: id=%d int 0x%x %dx%d\n",
1606 texObj->Name, internalFormat,
1607 width, height);
1608 }
1609
1610 if ((target != GL_TEXTURE_1D && target != GL_TEXTURE_2D) || texImage->Border > 0) {
1611 _mesa_problem(NULL, "tdfx: unsupported texture in tdfxCompressedTexImg()\n");
1612 return;
1613 }
1614
1615 assert(texImage->IsCompressed);
1616
1617 ti = TDFX_TEXTURE_DATA(texObj);
1618 if (!ti) {
1619 texObj->DriverData = fxAllocTexObjData(fxMesa);
1620 if (!texObj->DriverData) {
1621 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCompressedTexImage2D");
1622 return;
1623 }
1624 ti = TDFX_TEXTURE_DATA(texObj);
1625 }
1626 assert(ti);
1627
1628 mml = TDFX_TEXIMAGE_DATA(texImage);
1629 if (!mml) {
1630 texImage->DriverData = CALLOC(sizeof(tdfxMipMapLevel));
1631 if (!texImage->DriverData) {
1632 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCompressedTexImage2D");
1633 return;
1634 }
1635 mml = TDFX_TEXIMAGE_DATA(texImage);
1636 }
1637
1638 tdfxTexGetInfo(ctx, width, height, NULL, NULL, NULL, NULL,
1639 &mml->wScale, &mml->hScale);
1640
1641 mml->width = width * mml->wScale;
1642 mml->height = height * mml->hScale;
1643
1644
1645 /* choose the texture format */
1646 assert(ctx->Driver.ChooseTextureFormat);
1647 texImage->TexFormat = (*ctx->Driver.ChooseTextureFormat)(ctx,
1648 internalFormat, -1/*format*/, -1/*type*/);
1649 assert(texImage->TexFormat);
1650
1651 /* Determine the appropriate Glide texel format,
1652 * given the user's internal texture format hint.
1653 */
1654 mml->glideFormat = fxGlideFormat(texImage->TexFormat->MesaFormat);
1655 ti->info.format = mml->glideFormat;
1656 texImage->FetchTexelc = fxFetchFunction(texImage->TexFormat->MesaFormat);
1657
1658 /* allocate new storage for texture image, if needed */
1659 if (!texImage->Data) {
1660 texImage->CompressedSize = _mesa_compressed_texture_size(ctx,
1661 mml->width,
1662 mml->height,
1663 1,
1664 internalFormat);
1665 texImage->Data = _mesa_malloc(texImage->CompressedSize);
1666 if (!texImage->Data) {
1667 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCompressedTexImage2D");
1668 return;
1669 }
1670 }
1671
1672 /* save the texture data */
1673 if (mml->wScale != 1 || mml->hScale != 1) {
1674 /* [dBorca] Hack alert:
1675 * now we're screwed. We can't decompress,
1676 * unless we do it in HW (via textureBuffer).
1677 * We still have some chances:
1678 * 1) we got FXT1 textures - we CAN decompress, rescale for
1679 * aspectratio, then compress back.
1680 * 2) there is a chance that MIN("s", "t") won't be overflowed.
1681 * Thus, we don't care about textureclamp and we could lower
1682 * MIN("uscale", "vscale") below 32. We still have to have
1683 * our data aligned inside a 8:1 rectangle.
1684 * 3) just in case if MIN("s", "t") gets overflowed with GL_REPEAT,
1685 * we replicate the data over the padded area.
1686 * For now, we take 2) + 3) but texelfetchers will be wrong!
1687 */
1688 GLuint srcRowStride = _mesa_compressed_row_stride(internalFormat, width);
1689
1690 GLuint destRowStride = _mesa_compressed_row_stride(internalFormat,
1691 mml->width);
1692
1693 _mesa_upscale_teximage2d(srcRowStride, (height+3) / 4,
1694 destRowStride, (mml->height+3) / 4,
1695 1, data, srcRowStride,
1696 texImage->Data);
1697 ti->padded = GL_TRUE;
1698 } else {
1699 MEMCPY(texImage->Data, data, texImage->CompressedSize);
1700 }
1701
1702 /* GL_SGIS_generate_mipmap */
1703 if (level == texObj->BaseLevel && texObj->GenerateMipmap) {
1704 assert(!texImage->IsCompressed);
1705 }
1706
1707 RevalidateTexture(ctx, texObj);
1708
1709 ti->reloadImages = GL_TRUE;
1710 fxMesa->new_state |= TDFX_NEW_TEXTURE;
1711 }
1712
1713
1714 static void
1715 tdfxCompressedTexSubImage2D( GLcontext *ctx, GLenum target,
1716 GLint level, GLint xoffset,
1717 GLint yoffset, GLsizei width,
1718 GLint height, GLenum format,
1719 GLsizei imageSize, const GLvoid *data,
1720 struct gl_texture_object *texObj,
1721 struct gl_texture_image *texImage )
1722 {
1723 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
1724 tdfxTexInfo *ti;
1725 tdfxMipMapLevel *mml;
1726 GLint destRowStride, srcRowStride;
1727 GLint i, rows;
1728 GLubyte *dest;
1729
1730 if (TDFX_DEBUG & DEBUG_VERBOSE_DRI) {
1731 fprintf(stderr, "tdfxCompressedTexSubImage2D: id=%d\n", texObj->Name);
1732 }
1733
1734 ti = TDFX_TEXTURE_DATA(texObj);
1735 assert(ti);
1736 mml = TDFX_TEXIMAGE_DATA(texImage);
1737 assert(mml);
1738
1739 srcRowStride = _mesa_compressed_row_stride(texImage->InternalFormat, width);
1740
1741 destRowStride = _mesa_compressed_row_stride(texImage->InternalFormat,
1742 mml->width);
1743 dest = _mesa_compressed_image_address(xoffset, yoffset, 0,
1744 texImage->InternalFormat,
1745 mml->width,
1746 (GLubyte*) texImage->Data);
1747
1748 rows = height / 4; /* [dBorca] hardcoded 4, but works for FXT1/DXTC */
1749
1750 for (i = 0; i < rows; i++) {
1751 MEMCPY(dest, data, srcRowStride);
1752 dest += destRowStride;
1753 data = (GLvoid *)((GLuint)data + (GLuint)srcRowStride);
1754 }
1755
1756 /* [dBorca] Hack alert:
1757 * see fxDDCompressedTexImage2D for caveats
1758 */
1759 if (mml->wScale != 1 || mml->hScale != 1) {
1760 srcRowStride = _mesa_compressed_row_stride(texImage->InternalFormat, texImage->Width);
1761
1762 destRowStride = _mesa_compressed_row_stride(texImage->InternalFormat,
1763 mml->width);
1764 _mesa_upscale_teximage2d(srcRowStride, texImage->Height / 4,
1765 destRowStride, mml->height / 4,
1766 1, texImage->Data, destRowStride,
1767 texImage->Data);
1768 }
1769
1770 /* GL_SGIS_generate_mipmap */
1771 if (level == texObj->BaseLevel && texObj->GenerateMipmap) {
1772 assert(!texImage->IsCompressed);
1773 }
1774
1775 RevalidateTexture(ctx, texObj);
1776
1777 ti->reloadImages = GL_TRUE;
1778 fxMesa->new_state |= TDFX_NEW_TEXTURE;
1779 }
1780
1781
1782 #if 0
1783 static void
1784 PrintTexture(int w, int h, int c, const GLubyte * data)
1785 {
1786 int i, j;
1787 for (i = 0; i < h; i++) {
1788 for (j = 0; j < w; j++) {
1789 if (c == 2)
1790 printf("%02x %02x ", data[0], data[1]);
1791 else if (c == 3)
1792 printf("%02x %02x %02x ", data[0], data[1], data[2]);
1793 data += c;
1794 }
1795 printf("\n");
1796 }
1797 }
1798 #endif
1799
1800
1801 GLboolean
1802 tdfxTestProxyTexImage(GLcontext *ctx, GLenum target,
1803 GLint level, GLint internalFormat,
1804 GLenum format, GLenum type,
1805 GLint width, GLint height,
1806 GLint depth, GLint border)
1807 {
1808 tdfxContextPtr fxMesa = TDFX_CONTEXT(ctx);
1809 struct gl_shared_state *mesaShared = fxMesa->glCtx->Shared;
1810 struct tdfxSharedState *shared = (struct tdfxSharedState *) mesaShared->DriverData;
1811
1812 switch (target) {
1813 case GL_PROXY_TEXTURE_1D:
1814 /*JJJ wrong*/
1815 case GL_PROXY_TEXTURE_2D:
1816 {
1817 struct gl_texture_object *tObj;
1818 tdfxTexInfo *ti;
1819 int memNeeded;
1820
1821 tObj = ctx->Texture.Proxy2D;
1822 if (!tObj->DriverData)
1823 tObj->DriverData = fxAllocTexObjData(fxMesa);
1824 ti = TDFX_TEXTURE_DATA(tObj);
1825 assert(ti);
1826
1827 /* assign the parameters to test against */
1828 tObj->Image[0][level]->Width = width;
1829 tObj->Image[0][level]->Height = height;
1830 tObj->Image[0][level]->Border = border;
1831 #if 0
1832 tObj->Image[0][level]->InternalFormat = internalFormat;
1833 #endif
1834 if (level == 0) {
1835 /* don't use mipmap levels > 0 */
1836 tObj->MinFilter = tObj->MagFilter = GL_NEAREST;
1837 }
1838 else {
1839 /* test with all mipmap levels */
1840 tObj->MinFilter = GL_LINEAR_MIPMAP_LINEAR;
1841 tObj->MagFilter = GL_NEAREST;
1842 }
1843 RevalidateTexture(ctx, tObj);
1844
1845 /*
1846 printf("small lodlog2 0x%x\n", ti->info.smallLodLog2);
1847 printf("large lodlog2 0x%x\n", ti->info.largeLodLog2);
1848 printf("aspect ratio 0x%x\n", ti->info.aspectRatioLog2);
1849 printf("glide format 0x%x\n", ti->info.format);
1850 printf("data %p\n", ti->info.data);
1851 printf("lodblend %d\n", (int) ti->LODblend);
1852 */
1853
1854 /* determine where texture will reside */
1855 if (ti->LODblend && !shared->umaTexMemory) {
1856 /* XXX GR_MIPMAPLEVELMASK_BOTH might not be right, but works */
1857 memNeeded = fxMesa->Glide.grTexTextureMemRequired(
1858 GR_MIPMAPLEVELMASK_BOTH, &(ti->info));
1859 }
1860 else {
1861 /* XXX GR_MIPMAPLEVELMASK_BOTH might not be right, but works */
1862 memNeeded = fxMesa->Glide.grTexTextureMemRequired(
1863 GR_MIPMAPLEVELMASK_BOTH, &(ti->info));
1864 }
1865 /*
1866 printf("Proxy test %d > %d\n", memNeeded, shared->totalTexMem[0]);
1867 */
1868 if (memNeeded > shared->totalTexMem[0])
1869 return GL_FALSE;
1870 else
1871 return GL_TRUE;
1872 }
1873 case GL_PROXY_TEXTURE_3D:
1874 return GL_TRUE; /* software rendering */
1875 default:
1876 return GL_TRUE; /* never happens, silence compiler */
1877 }
1878 }
1879
1880
1881 /**
1882 * Allocate a new texture object.
1883 * Called via ctx->Driver.NewTextureObject.
1884 * Note: this function will be called during context creation to
1885 * allocate the default texture objects.
1886 * Note: we could use containment here to 'derive' the driver-specific
1887 * texture object from the core mesa gl_texture_object. Not done at this time.
1888 */
1889 static struct gl_texture_object *
1890 tdfxNewTextureObject( GLcontext *ctx, GLuint name, GLenum target )
1891 {
1892 struct gl_texture_object *obj;
1893 obj = _mesa_new_texture_object(ctx, name, target);
1894 return obj;
1895 }
1896
1897
1898 void tdfxInitTextureFuncs( struct dd_function_table *functions )
1899 {
1900 functions->BindTexture = tdfxBindTexture;
1901 functions->NewTextureObject = tdfxNewTextureObject;
1902 functions->DeleteTexture = tdfxDeleteTexture;
1903 functions->TexEnv = tdfxTexEnv;
1904 functions->TexParameter = tdfxTexParameter;
1905 functions->ChooseTextureFormat = tdfxChooseTextureFormat;
1906 functions->TexImage1D = tdfxTexImage1D;
1907 functions->TexSubImage1D = tdfxTexSubImage1D;
1908 functions->TexImage2D = tdfxTexImage2D;
1909 functions->TexSubImage2D = tdfxTexSubImage2D;
1910 functions->IsTextureResident = tdfxIsTextureResident;
1911 functions->CompressedTexImage2D = tdfxCompressedTexImage2D;
1912 functions->CompressedTexSubImage2D = tdfxCompressedTexSubImage2D;
1913 functions->UpdateTexturePalette = tdfxUpdateTexturePalette;
1914 }