mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-28 06:21:14 +00:00
20c81d90c9
This one tests that when no offscreen is created for repeating but we drw everything individually, we still respect the clip set via child_bounds.
23 lines
410 B
Plaintext
23 lines
410 B
Plaintext
repeat {
|
|
bounds: -5 -5 10 10;
|
|
child-bounds: 0 0 32768 32768;
|
|
child: container {
|
|
color {
|
|
bounds: -128 -128 256 256;
|
|
color: rgb(255,0,0);
|
|
}
|
|
color {
|
|
bounds: -128 32640 256 256;
|
|
color: rgb(0,255,0);
|
|
}
|
|
color {
|
|
bounds: 32640 -128 256 256;
|
|
color: rgb(255,255,0);
|
|
}
|
|
color {
|
|
bounds: 32640 32640 256 256;
|
|
color: rgb(0,0,255);
|
|
}
|
|
}
|
|
}
|