Learning_GTK4_tree/testsuite/gsk/compare/scale-textures-negative-ngl...

49 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-12-12 11:36:42 +01:00
transform {
transform: scale(1, 1);
child: opacity {
opacity: 0.6;
child: container {
texture {
bounds: 0 0 50 50;
texture: url("data:,<svg width='50' height='50'><rect x='25' y='25' width='25' height='25' fill='red'/></svg>");
}
}
}
}
transform {
transform: scale(1, -1);
child: opacity {
opacity: 0.6;
child: container {
texture {
bounds: 0 0 50 50;
texture: url("data:,<svg width='50' height='50'><rect x='25' y='25' width='25' height='25' fill='lime'/></svg>");
}
}
}
}
transform {
transform: scale(-1, -1);
child: opacity {
opacity: 0.6;
child: container {
texture {
bounds: 0 0 50 50;
texture: url("data:,<svg width='50' height='50'><rect x='25' y='25' width='25' height='25' fill='blue'/></svg>");
}
}
}
}
transform {
transform: scale(-1, 1);
child: opacity {
opacity: 0.6;
child: container {
texture {
bounds: 0 0 50 50;
texture: url("data:,<svg width='50' height='50'><rect x='25' y='25' width='25' height='25' fill='yellow'/></svg>");
}
}
}
}