gtk/testsuite/gsk/compare/z-transform-clipping-bounds-nocairo.node
Benjamin Otte 97b78cede0 testsuite: Unify renderer exclusion naming
Instead of using "-3d" to exclude Cairo rendering, use "-no$renderer" to
allow excluding any renderer.
And because we use contains() for the check, we can exclude multiple
renderers by naming the test sth like "test-nogl-nocairo.node"
2023-12-26 05:03:23 +01:00

29 lines
496 B
Plaintext

transform {
transform: translate3d(0, 0, -10000);
child: color {
bounds: 0 0 50 50;
color: rgb(255,0,0);
}
}
transform {
transform: translate3d(0, 0, -10001);
child: color {
bounds: 50 0 50 50;
color: rgb(255,255,0);
}
}
transform {
transform: translate3d(0, 0, 10000);
child: color {
bounds: 0 50 50 50;
color: rgb(0,255,0);
}
}
transform {
transform: translate3d(0, 0, 10001);
child: color {
bounds: 50 50 50 50;
color: rgb(0,0,255);
}
}