commit cd0e442c3586561d138282e13d6fde6c3eb3a3bf parent a6aec7ea06623e533b4dd33b1c1dca1c5dc17d16 Author: Michael Forney <mforney@mforney.org> Date: Sun, 30 Jun 2013 21:29:57 -0700 intel: Fix xy_src_blt source coordinates (br26) Diffstat:
M | intel/blt.h | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/intel/blt.h b/intel/blt.h @@ -95,8 +95,8 @@ static inline uint32_t br23(uint16_t destination_y2, uint16_t destination_x2) static inline uint32_t br26(uint16_t source_y1, uint16_t source_x1) { - return source_y1 << 16 /* 31:16 */ - | source_x1 << 16 /* 15:0 */ + return source_y1 << 16 /* 31:16 */ + | source_x1 << 0 /* 15:0 */ ; };