mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-15 14:50:06 +00:00
fde3d2cd50
the near and far clipping plane are at -10000 and 10000 respectively. Test that the renderers respect that.
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);
|
|
}
|
|
}
|