Index: t_dd_vb.c =================================================================== RCS file: /cvs/mesa/Mesa/src/mesa/tnl_dd/t_dd_vb.c,v retrieving revision 1.3 diff -u -r1.3 t_dd_vb.c --- t_dd_vb.c 11 Dec 2003 16:49:55 -0000 1.3 +++ t_dd_vb.c 28 Mar 2006 18:13:05 -0000 @@ -200,7 +200,7 @@ #if HAVE_TINY_VERTICES case TINY_VERTEX_FORMAT: fprintf(stderr, "xyz %.4f,%.4f,%.4f rgba %x:%x:%x:%x\n", - v->v.x, v->v.y, v->v.z, + (GLfloat)v->v.x, (GLfloat)v->v.y, (GLfloat)v->v.z, v->tv.color.red, v->tv.color.green, v->tv.color.blue, @@ -210,7 +210,7 @@ #if HAVE_NOTEX_VERTICES case NOTEX_VERTEX_FORMAT: fprintf(stderr, "xyzw %.4f,%.4f,%.4f,%.4f rgba %x:%x:%x:%x spec %x:%x:%x:%x\n", - v->v.x, v->v.y, v->v.z, v->v.w, + (GLfloat)v->v.x, (GLfloat)v->v.y, (GLfloat)v->v.z, v->v.w, v->v.color.red, v->v.color.green, v->v.color.blue, @@ -224,7 +224,7 @@ #if HAVE_TEX0_VERTICES case TEX0_VERTEX_FORMAT: fprintf(stderr, "xyzw %.4f,%.4f,%.4f,%.4f rgba %x:%x:%x:%x st %.4f,%.4f\n", - v->v.x, v->v.y, v->v.z, v->v.w, + (GLfloat)v->v.x, (GLfloat)v->v.y, (GLfloat)v->v.z, v->v.w, v->v.color.red, v->v.color.green, v->v.color.blue, @@ -236,7 +236,7 @@ #if HAVE_TEX1_VERTICES case TEX1_VERTEX_FORMAT: fprintf(stderr, "xyzw %.4f,%.4f,%.4f,%.4f rgba %x:%x:%x:%x st %.4f,%.4f st %.4f,%.4f\n", - v->v.x, v->v.y, v->v.z, v->v.w, + (GLfloat)v->v.x, (GLfloat)v->v.y, (GLfloat)v->v.z, v->v.w, v->v.color.red, v->v.color.green, v->v.color.blue, @@ -244,13 +244,13 @@ v->v.u0, v->v.v0, v->v.u1, - v->v.u2); + v->v.v1); break; #endif #if HAVE_PTEX_VERTICES case PROJ_TEX1_VERTEX_FORMAT: fprintf(stderr, "xyzw %.4f,%.4f,%.4f,%.4f rgba %x:%x:%x:%x stq %.4f,%.4f,%.4f stq %.4f,%.4f,%.4f\n", - v->v.x, v->v.y, v->v.z, v->v.w, + (GLfloat)v->v.x, (GLfloat)v->v.y, (GLfloat)v->v.z, v->v.w, v->v.color.red, v->v.color.green, v->v.color.blue,