summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/glide/fxapi.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-05-10 02:59:04 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-05-10 02:59:04 +0000
commitf50bbbf8556483a8def9862c0d05382e43177eb0 (patch)
tree3c00a19baa4830d94c809a91d3f900d7703df823 /src/mesa/drivers/glide/fxapi.c
parent8acb7e9ea211423e196dac4dfde312ffeb78619a (diff)
check hardware type and use SETUP_SNAP if needed
Diffstat (limited to 'src/mesa/drivers/glide/fxapi.c')
-rw-r--r--src/mesa/drivers/glide/fxapi.c26
1 files changed, 18 insertions, 8 deletions
diff --git a/src/mesa/drivers/glide/fxapi.c b/src/mesa/drivers/glide/fxapi.c
index 72f2a4538b..4150652099 100644
--- a/src/mesa/drivers/glide/fxapi.c
+++ b/src/mesa/drivers/glide/fxapi.c
@@ -400,9 +400,13 @@ fxMesaCreateContext(GLuint win,
}
/*
- * Pixel tables are use during pixel read-back
+ * Pixel tables are used during pixel read-back
* Either initialize them for RGB or BGR order.
+ * Also determine if we need vertex snapping.
*/
+
+ fxMesa->snapVertices = GL_TRUE; /* play it safe */
+
#ifdef FXMESA_USE_ARGB
useBGR = GL_FALSE; /* Force RGB pixel order */
system = "FXMESA_USE_ARGB";
@@ -432,6 +436,7 @@ fxMesaCreateContext(GLuint win,
/* Voodoo 2 */
useBGR = GL_TRUE;
system = "Voodoo2";
+ fxMesa->snapVertices = GL_FALSE;
}
else if (voodoo->nTexelfx == 2 &&
voodoo->fbiRev == 2 &&
@@ -457,22 +462,27 @@ fxMesaCreateContext(GLuint win,
/* Presumed Voodoo3 */
useBGR = GL_FALSE;
system = "Voodoo3";
+ fxMesa->snapVertices = GL_FALSE;
}
- if (getenv("MESA_FX_INFO")) {
- printf
- ("Voodoo: Texelfx: %d / FBI Rev.: %d / TMU Rev.: %d / TMU RAM: %d\n",
- voodoo->nTexelfx, voodoo->fbiRev, voodoo->tmuConfig[0].tmuRev,
- voodoo->tmuConfig[0].tmuRam);
+ if (verbose) {
+ fprintf(stderr,
+ "Voodoo: Texelfx: %d / FBI Rev.: %d / TMU Rev.: %d / TMU RAM: %d\n",
+ voodoo->nTexelfx, voodoo->fbiRev, voodoo->tmuConfig[0].tmuRev,
+ voodoo->tmuConfig[0].tmuRam);
}
}
else {
useBGR = GL_FALSE; /* use RGB pixel order otherwise */
system = "non-voodoo";
+ fxMesa->snapVertices = GL_FALSE;
}
#endif /*FXMESA_USE_ARGB */
- if (getenv("MESA_FX_INFO"))
- printf("Voodoo pixel order: %s (%s)\n", useBGR ? "BGR" : "RGB", system);
+ if (verbose) {
+ fprintf(stderr, "Voodoo pixel order: %s (%s)\n",
+ useBGR ? "BGR" : "RGB", system);
+ fprintf(stderr, "Vertex snapping: %d\n", fxMesa->snapVertices);
+ }
fxInitPixelTables(fxMesa, useBGR);