diff options
author | Alan Hourihane <[email protected]> | 2008-03-19 01:03:48 +0000 |
---|---|---|
committer | Alan Hourihane <[email protected]> | 2008-03-19 01:04:32 +0000 |
commit | a3b5ae783e18040349f1736c2ad812e0ec24a7b8 (patch) | |
tree | d680dcf54f0f46acea5cb85b98ba61b30423928a /src/mesa/tnl/t_vertex_sse.c | |
parent | f7cfc51b057d9d2fa109b32796b992e8f4f3bfcc (diff) |
set outputs_safe to 0 as it's possible for the code generation
to slip over the allocated memory for the vb.
pull in sse fixes from gallium-0.1
Diffstat (limited to 'src/mesa/tnl/t_vertex_sse.c')
-rw-r--r-- | src/mesa/tnl/t_vertex_sse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vertex_sse.c b/src/mesa/tnl/t_vertex_sse.c index 9515d9f81f5..922737009af 100644 --- a/src/mesa/tnl/t_vertex_sse.c +++ b/src/mesa/tnl/t_vertex_sse.c @@ -648,7 +648,7 @@ void _tnl_generate_sse_emit( GLcontext *ctx ) p.ctx = ctx; 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); |