projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
491f646
)
r300: Disable vertex program point size; it's almost certainly wrong.
author
Oliver McFadden
<z3ro.geek@gmail.com>
Sat, 14 Jul 2007 18:31:29 +0000
(18:31 +0000)
committer
Oliver McFadden
<z3ro.geek@gmail.com>
Sat, 14 Jul 2007 18:31:29 +0000
(18:31 +0000)
See the conversation between myself and Tommy Schultz Lassen on mesa3d-dev.
src/mesa/drivers/dri/r300/r300_emit.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/r300/r300_emit.c
b/src/mesa/drivers/dri/r300/r300_emit.c
index 424bf44e595159dbe48d59d733bc2f1ca087cc93..6da22f652f3f3c2d92204e9d321b1b38c7bcba2c 100644
(file)
--- 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;
}