diff options
author | Oliver McFadden <[email protected]> | 2007-07-14 18:31:29 +0000 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2007-07-14 18:31:29 +0000 |
commit | 393558a933670705f9d3482fd976393a2baca957 (patch) | |
tree | e0f6531a8cc2a638b73da4d08757c0be5577cd74 | |
parent | 491f646c798ec2f20ba5a6adc600bc7ea92ddf24 (diff) |
r300: Disable vertex program point size; it's almost certainly wrong.
See the conversation between myself and Tommy Schultz Lassen on mesa3d-dev.
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_emit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_emit.c b/src/mesa/drivers/dri/r300/r300_emit.c index 424bf44e595..6da22f652f3 100644 --- a/src/mesa/drivers/dri/r300/r300_emit.c +++ b/src/mesa/drivers/dri/r300/r300_emit.c @@ -308,10 +308,10 @@ GLuint r300VAPOutputCntl0(GLcontext * ctx, GLuint OutputsWritten) #if 0 if (OutputsWritten & (1 << VERT_RESULT_FOGC)) ; -#endif if (OutputsWritten & (1 << VERT_RESULT_PSIZ)) ret |= R300_VAP_OUTPUT_VTX_FMT_0__PT_SIZE_PRESENT; +#endif return ret; } |