mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
draw: don't assume output buffer pointer is aligned
(cherry picked from commit 23cc303994)
This commit is contained in:
parent
cf85e413ad
commit
13f46fa1b9
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue