summaryrefslogtreecommitdiff
path: root/src/mesa/vf
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@tungstengraphics.com>2008-03-19 00:18:07 +0000
committerAlan Hourihane <alanh@tungstengraphics.com>2008-03-19 00:18:37 +0000
commitec890533c2852fa62366d449e6fbc899fb0498be (patch)
treefb1cbe185ef5addfab2a0174df74b1f961405d54 /src/mesa/vf
parent6a8bbdba188fc299c46e8d8f11777046737cd183 (diff)
set outputs_safe to 0 as it's possible for the code generation
to slip over the allocated memory for the vb.
Diffstat (limited to 'src/mesa/vf')
-rw-r--r--src/mesa/vf/vf_sse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vf/vf_sse.c b/src/mesa/vf/vf_sse.c
index 3ce76e2b04..c3a2166578 100644
--- a/src/mesa/vf/vf_sse.c
+++ b/src/mesa/vf/vf_sse.c
@@ -633,7 +633,7 @@ void vf_generate_sse_emit( struct vertex_fetch *vf )
p.vf = vf;
p.inputs_safe = 0; /* for now */
- p.outputs_safe = 1; /* for now */
+ p.outputs_safe = 0; /* for now */
p.have_sse2 = cpu_has_xmm2;
p.identity = x86_make_reg(file_XMM, 6);
p.chan0 = x86_make_reg(file_XMM, 7);