mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 20:51:07 +00:00
97b78cede0
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"
29 lines
496 B
Plaintext
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);
|
|
}
|
|
}
|