diff options
author | Keith Whitwell <[email protected]> | 2008-10-07 16:44:24 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-10-07 16:44:24 +0100 |
commit | 23cc303994eb630c56b1224dfdac51dcea41ed03 (patch) | |
tree | 127253c483bf2fc9631994d26e542d5751f265c0 /src | |
parent | 4070dba28a486bc0d14df028a085601ae7299f46 (diff) |
draw: don't assume output buffer pointer is aligned
Diffstat (limited to 'src')
-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, |