pixman: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Feb 20 17:56:01 UTC 2020


 pixman/pixman-combine32.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 127d9525d63bd51f97ef64c66a4e8fb351309738
Author: Yin Shiyou <yinshiyou-hf at loongson.cn>
Date:   Mon Feb 3 17:50:51 2020 +0800

    pixman-combine: Fix wrong value of RB_MASK_PLUS_ONE.
    
    No functional change, as explained by Søren in
    https://lists.freedesktop.org/archives/pixman/2020-February/004902.html

diff --git a/pixman/pixman-combine32.h b/pixman/pixman-combine32.h
index cdd56a6..59bb247 100644
--- a/pixman/pixman-combine32.h
+++ b/pixman/pixman-combine32.h
@@ -12,7 +12,7 @@
 #define RB_MASK 0xff00ff
 #define AG_MASK 0xff00ff00
 #define RB_ONE_HALF 0x800080
-#define RB_MASK_PLUS_ONE 0x10000100
+#define RB_MASK_PLUS_ONE 0x1000100
 
 #define ALPHA_8(x) ((x) >> A_SHIFT)
 #define RED_8(x) (((x) >> R_SHIFT) & MASK)


More information about the xorg-commit mailing list