[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][xorg-team/wayland/xwayland][debian-unstable] 6 commits: xwayland: Fix cursor color



Title: GitLab

Timo Aaltonen pushed to branch debian-unstable at X Strike Force / wayland / xwayland

Commits:

4 changed files:

Changes:

  • debian/changelog
    1
    +xwayland (2:22.1.0-1) unstable; urgency=medium
    
    2
    +
    
    3
    +  * New upstream release.
    
    4
    +  * control: Bump policy to 4.6.0.
    
    5
    +
    
    6
    + -- Timo Aaltonen <tjaalton@debian.org>  Wed, 16 Feb 2022 20:20:06 +0200
    
    7
    +
    
    1 8
     xwayland (2:22.0.99.902-1) unstable; urgency=medium
    
    2 9
     
    
    3 10
       * New upstream release candidate.
    

  • debian/control
    ... ... @@ -25,7 +25,7 @@ Build-Depends:
    25 25
      xfonts-utils,
    
    26 26
      xtrans-dev,
    
    27 27
      wayland-protocols,
    
    28
    -Standards-Version: 4.5.1
    
    28
    +Standards-Version: 4.6.0
    
    29 29
     Vcs-Git: https://salsa.debian.org/xorg-team/wayland/xwayland.git
    
    30 30
     Vcs-Browser: https://salsa.debian.org/xorg-team/wayland/xwayland
    
    31 31
     Homepage: https://www.x.org/
    

  • hw/xwayland/xwayland-cursor.c
    ... ... @@ -54,9 +54,11 @@ expand_source_and_mask(CursorPtr cursor, CARD32 *data)
    54 54
     
    
    55 55
         p = data;
    
    56 56
         fg = ((cursor->foreRed & 0xff00) << 8) |
    
    57
    -        (cursor->foreGreen & 0xff00) | (cursor->foreGreen >> 8);
    
    57
    +          (cursor->foreGreen & 0xff00) |
    
    58
    +          (cursor->foreBlue >> 8);
    
    58 59
         bg = ((cursor->backRed & 0xff00) << 8) |
    
    59
    -        (cursor->backGreen & 0xff00) | (cursor->backGreen >> 8);
    
    60
    +          (cursor->backGreen & 0xff00) |
    
    61
    +          (cursor->backBlue >> 8);
    
    60 62
         stride = BitmapBytePad(bits->width);
    
    61 63
         for (y = 0; y < bits->height; y++)
    
    62 64
             for (x = 0; x < bits->width; x++) {
    

  • meson.build
    ... ... @@ -3,7 +3,7 @@ project('xwayland', 'c',
    3 3
                 'buildtype=debugoptimized',
    
    4 4
                 'c_std=gnu99',
    
    5 5
             ],
    
    6
    -        version: '22.0.99.902',
    
    6
    +        version: '22.1.0',
    
    7 7
             meson_version: '>= 0.47.0',
    
    8 8
     )
    
    9 9
     release_date = '2021-07-05'
    


  • Reply to: