mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
Merge branch 'matthiasc/for-main' into 'main'
gsk: Mark mask nodes as 'supports transforms' See merge request GNOME/gtk!5650
This commit is contained in:
commit
664ce48a4c
@ -315,6 +315,7 @@ node_supports_transform (const GskRenderNode *node)
|
||||
case GSK_CAIRO_NODE:
|
||||
case GSK_BLEND_NODE:
|
||||
case GSK_BLUR_NODE:
|
||||
case GSK_MASK_NODE:
|
||||
return TRUE;
|
||||
|
||||
case GSK_SHADOW_NODE:
|
||||
|
@ -758,11 +758,8 @@ _gtk_css_number_value_get (const GtkCssValue *value,
|
||||
gboolean
|
||||
gtk_css_dimension_value_is_zero (const GtkCssValue *value)
|
||||
{
|
||||
if (!value)
|
||||
return TRUE;
|
||||
|
||||
if (value->class != >K_CSS_VALUE_NUMBER)
|
||||
return FALSE;
|
||||
g_assert (value != 0);
|
||||
g_assert (value->class == >K_CSS_VALUE_NUMBER);
|
||||
|
||||
if (value->type != TYPE_DIMENSION)
|
||||
return FALSE;
|
||||
|
@ -3051,6 +3051,7 @@ theme_lookup_icon (IconTheme *theme,
|
||||
|
||||
min_difference = G_MAXINT;
|
||||
min_dir_size = NULL;
|
||||
min_file = NULL;
|
||||
|
||||
for (i = 0; i < theme->dir_sizes->len; i++)
|
||||
{
|
||||
|
11
testsuite/gsk/compare/texture-scale-magnify-rotate.node
Normal file
11
testsuite/gsk/compare/texture-scale-magnify-rotate.node
Normal file
@ -0,0 +1,11 @@
|
||||
clip {
|
||||
clip: 24995 24995 10 10;
|
||||
child: transform {
|
||||
transform: translate(25000, 25000) rotate(90) translate(-25000, -25000);
|
||||
child: texture-scale {
|
||||
texture: url("data:;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAKElEQVQYlWNkYGD4z4AG/v/HEGJgwhDBAQZQIQs2hzMyMtLBauorBACQUgcSISWLRgAAAABJRU5ErkJggg==");
|
||||
bounds: 0 0 50000 50000;
|
||||
filter: nearest;
|
||||
}
|
||||
}
|
||||
}
|
BIN
testsuite/gsk/compare/texture-scale-magnify-rotate.png
Normal file
BIN
testsuite/gsk/compare/texture-scale-magnify-rotate.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 98 B |
@ -77,6 +77,7 @@ compare_render_tests = [
|
||||
'scaled-texture',
|
||||
'shadow-in-opacity',
|
||||
'texture-scale-magnify-10000x',
|
||||
'texture-scale-magnify-rotate',
|
||||
'texture-scale-stripes',
|
||||
'texture-url',
|
||||
'transform-in-transform',
|
||||
@ -234,6 +235,8 @@ node_parser_tests = [
|
||||
'texture-fail.node',
|
||||
'texture-fail.ref.node',
|
||||
'texture-fail.ref.errors',
|
||||
'texture-scale-filters.node',
|
||||
'texture-scale-filters.ref.node',
|
||||
'texture-scale-unknown-filter.errors',
|
||||
'texture-scale-unknown-filter.node',
|
||||
'texture-scale-unknown-filter.ref.node',
|
||||
|
22
testsuite/gsk/nodeparser/texture-scale-filters.node
Normal file
22
testsuite/gsk/nodeparser/texture-scale-filters.node
Normal file
@ -0,0 +1,22 @@
|
||||
texture-scale {
|
||||
texture: url('data:,<svg><rect width="10" height="10" style="fill:red"/></svg>');
|
||||
bounds: 0 0 50 50;
|
||||
}
|
||||
|
||||
texture-scale {
|
||||
texture: url('data:,<svg><rect width="10" height="10" style="fill:red"/></svg>');
|
||||
bounds: 0 0 50 50;
|
||||
filter: linear;
|
||||
}
|
||||
|
||||
texture-scale {
|
||||
texture: url('data:,<svg><rect width="10" height="10" style="fill:red"/></svg>');
|
||||
bounds: 0 0 50 50;
|
||||
filter: nearest;
|
||||
}
|
||||
|
||||
texture-scale {
|
||||
texture: url('data:,<svg><rect width="10" height="10" style="fill:red"/></svg>');
|
||||
bounds: 0 0 50 50;
|
||||
filter: trilinear;
|
||||
}
|
26
testsuite/gsk/nodeparser/texture-scale-filters.ref.node
Normal file
26
testsuite/gsk/nodeparser/texture-scale-filters.ref.node
Normal file
@ -0,0 +1,26 @@
|
||||
texture-scale {
|
||||
bounds: 0 0 50 50;
|
||||
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWP8z8Dwn4EIwESMolGF\
|
||||
1FMIAD2cAhL1w47oAAAAAElFTkSuQmCC\
|
||||
");
|
||||
}
|
||||
texture-scale {
|
||||
bounds: 0 0 50 50;
|
||||
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWP8z8Dwn4EIwESMolGF\
|
||||
1FMIAD2cAhL1w47oAAAAAElFTkSuQmCC\
|
||||
");
|
||||
}
|
||||
texture-scale {
|
||||
bounds: 0 0 50 50;
|
||||
filter: nearest;
|
||||
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWP8z8Dwn4EIwESMolGF\
|
||||
1FMIAD2cAhL1w47oAAAAAElFTkSuQmCC\
|
||||
");
|
||||
}
|
||||
texture-scale {
|
||||
bounds: 0 0 50 50;
|
||||
filter: trilinear;
|
||||
texture: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWP8z8Dwn4EIwESMolGF\
|
||||
1FMIAD2cAhL1w47oAAAAAElFTkSuQmCC\
|
||||
");
|
||||
}
|
Loading…
Reference in New Issue
Block a user