draw: don't assume output buffer pointer is aligned
authorKeith Whitwell <keith@tungstengraphics.com>
Tue, 7 Oct 2008 15:44:24 +0000 (16:44 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Tue, 7 Oct 2008 15:44:24 +0000 (16:44 +0100)
src/gallium/auxiliary/draw/draw_vs_aos_io.c

index dd79bc799aab8ef6c4ccc86742edf61c9abc3690..39f75b50b760bbb9350dc0dbf65c90513a32f3f2 100644 (file)
@@ -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,