Merge branch 'matthiasc/for-main' into 'main'

ci: Add more xfails

See merge request GNOME/gtk!7007
This commit is contained in:
Matthias Clasen 2024-03-10 23:57:42 +00:00
commit b1e3b18ede
2 changed files with 39 additions and 2 deletions

33
NEWS
View File

@ -7,6 +7,39 @@ in different ways than the old gl renderer, and trigger new driver bugs,
https://gitlab.gnome.org/GNOME/gtk/-/issues/6388). Therefore, it is
recommended to use the latest mesa release (24.x) with the new renderers.
* GtkTextView:
- Don't snapshot children twice
* GtkEmojiChooser:
- Fix presentation selector handling
* GtkSnapshot:
- Fix wrong nodes with transformed shadows
* Accessibility:
- Implement get_contents_at for all our text widgets
- Add GtkAccessibleText.get_default_attributes
* GSK:
- Don't fall back to cairo for software rendering. gl+llvmpipe is better
- Round vertical glyph position to a device pixel position if the font is hinted
- Fix problems with clip handling
- Make vulkan and ngl match their font handling
* MacOs:
- Implement cursor-from-texture
* Translation updates:
Basque
British English
French
Indonesian
Kazakh
Latvian
Lithuanian
Norwegian Bokmål
Slovenian
Turkish
Overview of Changes in 4.13.9, 02-03-2024
=========================================

View File

@ -219,13 +219,17 @@ variants = {
compare_xfails = {
'ngl': {
'radial-gradient-with-64-colorstops': ['clipped'],
# the gradients are prone to rounding errors which become
# more pronounced in small clips, it seems
'radial-gradient-with-64-colorstops': ['clipped', 'colorflipped'],
'conic-gradient-with-64-colorstops': ['clipped', 'colorflipped'],
'blur-child-bounds-oversize-nogl': ['clipped'], # 6450
},
'vulkan': {
'radial-gradient-with-64-colorstops': ['clipped', 'colorflipped'],
'conic-gradient-with-64-colorstops': ['clipped', 'colorflipped'],
'blur-child-bounds-oversize-nogl': ['clipped'], # 6450
'repeat-repeats-nested-nogl': ['clipped'], # 6522
'radial-gradient-with-64-colorstops': ['colorflipped'],
'repeating-radial-gradient-edge-colors': ['colorflipped'],
},
'gl': {