Skip to content

Commit

Permalink
drivers/pentprim/zxuv1: fix the punpckldq mess
Browse files Browse the repository at this point in the history
  • Loading branch information
vs49688 committed Aug 24, 2024
1 parent e993f5e commit d7d1037
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/pentprim/xzuv1.inc
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,9 @@ endif

;; U
;;
movd mm0,dword ptr PARAM.d_u_y1 ; Load dy1
punpckldq mm0,dword ptr PARAM.d_u_y0 ; and dy0
movd mm0, dword ptr PARAM.d_u_y1 ; Load dy1 into mm0
movd mm1, dword ptr PARAM.d_u_y0 ; Load dy0 into mm1
punpckldq mm0, mm1 ; Interleave dy1 and dy0

PACK_U

Expand Down Expand Up @@ -252,8 +253,9 @@ endif

;; V
;;
movd mm0,dword ptr PARAM.d_v_y1 ; Load dy1
punpckldq mm0,dword ptr PARAM.d_v_y0 ; and dy0
movd mm0, dword ptr PARAM.d_v_y1 ; Load dy1 into mm0
movd mm1, dword ptr PARAM.d_v_y0 ; Load dy0 into mm1
punpckldq mm0, mm1 ; Interleave dy1 and dy0

PACK_V

Expand Down

0 comments on commit d7d1037

Please sign in to comment.