mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 01:20:42 -05:00
renderer-view: Use graphene APIs
Yet another case of swapping operations order upside down. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1439
This commit is contained in:
parent
4376f59c1e
commit
f676861054
@ -79,41 +79,41 @@ meta_renderer_view_get_offscreen_transformation_matrix (ClutterStageView *view,
|
||||
{
|
||||
MetaRendererView *renderer_view = META_RENDERER_VIEW (view);
|
||||
|
||||
cogl_matrix_init_identity (matrix);
|
||||
graphene_matrix_init_identity (matrix);
|
||||
|
||||
switch (renderer_view->transform)
|
||||
{
|
||||
case META_MONITOR_TRANSFORM_NORMAL:
|
||||
break;
|
||||
case META_MONITOR_TRANSFORM_90:
|
||||
cogl_matrix_rotate (matrix, 90, 0, 0, 1);
|
||||
cogl_matrix_translate (matrix, 0, -1, 0);
|
||||
graphene_matrix_translate (matrix, &GRAPHENE_POINT3D_INIT (0, -1, 0));
|
||||
graphene_matrix_rotate (matrix, 90, graphene_vec3_z_axis ());
|
||||
break;
|
||||
case META_MONITOR_TRANSFORM_180:
|
||||
cogl_matrix_rotate (matrix, 180, 0, 0, 1);
|
||||
cogl_matrix_translate (matrix, -1, -1, 0);
|
||||
graphene_matrix_translate (matrix, &GRAPHENE_POINT3D_INIT (-1, -1, 0));
|
||||
graphene_matrix_rotate (matrix, 180, graphene_vec3_z_axis ());
|
||||
break;
|
||||
case META_MONITOR_TRANSFORM_270:
|
||||
cogl_matrix_rotate (matrix, 270, 0, 0, 1);
|
||||
cogl_matrix_translate (matrix, -1, 0, 0);
|
||||
graphene_matrix_translate (matrix, &GRAPHENE_POINT3D_INIT (-1, 0, 0));
|
||||
graphene_matrix_rotate (matrix, 270, graphene_vec3_z_axis ());
|
||||
break;
|
||||
case META_MONITOR_TRANSFORM_FLIPPED:
|
||||
cogl_matrix_scale (matrix, -1, 1, 1);
|
||||
cogl_matrix_translate (matrix, -1, 0, 0);
|
||||
graphene_matrix_translate (matrix, &GRAPHENE_POINT3D_INIT (-1, 0, 0));
|
||||
graphene_matrix_scale (matrix, -1, 1, 1);
|
||||
break;
|
||||
case META_MONITOR_TRANSFORM_FLIPPED_90:
|
||||
cogl_matrix_scale (matrix, -1, 1, 1);
|
||||
cogl_matrix_rotate (matrix, 90, 0, 0, 1);
|
||||
graphene_matrix_rotate (matrix, 90, graphene_vec3_z_axis ());
|
||||
graphene_matrix_scale (matrix, -1, 1, 1);
|
||||
break;
|
||||
case META_MONITOR_TRANSFORM_FLIPPED_180:
|
||||
cogl_matrix_scale (matrix, -1, 1, 1);
|
||||
cogl_matrix_rotate (matrix, 180, 0, 0, 1);
|
||||
cogl_matrix_translate (matrix, 0, -1, 0);
|
||||
graphene_matrix_translate (matrix, &GRAPHENE_POINT3D_INIT (0, -1, 0));
|
||||
graphene_matrix_rotate (matrix, 180, graphene_vec3_z_axis ());
|
||||
graphene_matrix_scale (matrix, -1, 1, 1);
|
||||
break;
|
||||
case META_MONITOR_TRANSFORM_FLIPPED_270:
|
||||
cogl_matrix_scale (matrix, -1, 1, 1);
|
||||
cogl_matrix_rotate (matrix, 270, 0, 0, 1);
|
||||
cogl_matrix_translate (matrix, -1, -1, 0);
|
||||
graphene_matrix_translate (matrix, &GRAPHENE_POINT3D_INIT (-1, -1, 0));
|
||||
graphene_matrix_rotate (matrix, 270, graphene_vec3_z_axis ());
|
||||
graphene_matrix_scale (matrix, -1, 1, 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user