diff options
author | Keith Whitwell <[email protected]> | 2008-10-07 16:44:24 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-10-15 17:24:42 +0100 |
commit | 13f46fa1b9c3009395a0d7f30ebef127f5937451 (patch) | |
tree | a2bd1c88856b8755134caf245d854567fc795bf5 /src/gallium | |
parent | cf85e413ad7672c1cef73215222ca1caa8e48b30 (diff) |
draw: don't assume output buffer pointer is aligned
(cherry picked from commit 23cc303994eb630c56b1224dfdac51dcea41ed03)
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs_aos_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_aos_io.c b/src/gallium/auxiliary/draw/draw_vs_aos_io.c index dd79bc799aa..39f75b50b76 100644 --- a/src/gallium/auxiliary/draw/draw_vs_aos_io.c +++ b/src/gallium/auxiliary/draw/draw_vs_aos_io.c @@ -338,7 +338,7 @@ static void emit_store_R32G32B32A32( struct aos_compilation *cp, struct x86_reg dst_ptr, struct x86_reg dataXMM ) { - sse_movaps(cp->func, dst_ptr, dataXMM); + sse_movups(cp->func, dst_ptr, dataXMM); } static void emit_store_R32G32B32( struct aos_compilation *cp, |