GNOME Bugzilla – Bug 675396
Possible bug in _clutter_paint_volume_axis_align
Last modified: 2012-05-28 15:01:32 UTC
In clutter-paint-volume.c in _clutter_paint_volume_axis_align if (G_LIKELY (pv->vertices[0].x == pv->vertices[1].x && pv->vertices[0].y == pv->vertices[3].y && pv->vertices[0].z == pv->vertices[4].y)) { pv->is_axis_aligned = TRUE; return; } may need to use: pv->vertices[0].z == pv->vertices[4].z
Created attachment 215124 [details] [review] paint-volume: Use the correct coordinate for axis alignment The z coordinate of the origin should be checked against the same coordinate of the vertex behind it. Given that most actors are flat surfaces, this check should always succeed.
looks like you're right
Attachment 215124 [details] pushed as 8e9992d - paint-volume: Use the correct coordinate for axis alignment