summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/draw
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-18 11:03:39 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-18 11:41:12 -0600
commit2ae9f53c9d56ca1898d30cbd359c1fd31027ae6c (patch)
treef6e3b47c616b7d1f01196ad1e9b8fd831d00e181 /src/mesa/pipe/draw
parent54c5262eaff45bea8fa01305fa423341998fdc4e (diff)
better debug code, silence some warnings
Diffstat (limited to 'src/mesa/pipe/draw')
-rw-r--r--src/mesa/pipe/draw/draw_vertex_shader.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/mesa/pipe/draw/draw_vertex_shader.c b/src/mesa/pipe/draw/draw_vertex_shader.c
index ea3fc2128d..8519daf17c 100644
--- a/src/mesa/pipe/draw/draw_vertex_shader.c
+++ b/src/mesa/pipe/draw/draw_vertex_shader.c
@@ -40,8 +40,12 @@
#include "pipe/tgsi/exec/tgsi_core.h"
+
+#define DBG 0
+
+
static INLINE unsigned
-compute_clipmask(const float *clip, const float (*plane)[4], unsigned nr)
+compute_clipmask(const float *clip, /*const*/ float plane[][4], unsigned nr)
{
unsigned mask = 0;
unsigned i;
@@ -142,6 +146,9 @@ run_vertex_program(struct draw_context *draw,
vOut[j]->data[0][2] = z * scale[2] + trans[2];
vOut[j]->data[0][3] = w;
+#if DBG
+ printf("output[%d]win: %f %f %f %f\n", x, y, z, w);
+#endif
/* Remaining attributes are packed into sequential post-transform
* vertex attrib slots.
* Skip 0 since we just did it above.
@@ -152,13 +159,13 @@ run_vertex_program(struct draw_context *draw,
vOut[j]->data[slot][1] = machine->Outputs[slot].xyzw[1].f[j];
vOut[j]->data[slot][2] = machine->Outputs[slot].xyzw[2].f[j];
vOut[j]->data[slot][3] = machine->Outputs[slot].xyzw[3].f[j];
- /*
- printf("output %d: %f %f %f %f\n", slot,
+#if DBG
+ printf("output[%d][%d]: %f %f %f %f\n", j, slot,
vOut[j]->data[slot][0],
vOut[j]->data[slot][1],
vOut[j]->data[slot][2],
vOut[j]->data[slot][3]);
- */
+#endif
}
} /* loop over vertices */
}
@@ -236,10 +243,10 @@ void draw_delete_vertex_shader(struct draw_context *draw,
struct draw_vertex_shader *vs = (struct draw_vertex_shader*)(vcso);
#if defined(__i386__) || defined(__386__)
- x86_release_func(&vs->state->sse2_program);
+ x86_release_func((struct x86_function *) &vs->state->sse2_program);
#endif
- free(vs->state);
+ free((void *) vs->state);
free(vcso);
}