mirror of
https://github.com/brl/mutter.git
synced 2025-07-06 19:09:51 +00:00
ClutterStageView: Initialize viewport/projection as dirty
Initially the viewport and projection is not calculated and should thus be marked as dirty. https://bugzilla.gnome.org/show_bug.cgi?id=768976
This commit is contained in:
@ -157,6 +157,11 @@ clutter_stage_view_dispose (GObject *object)
|
||||
static void
|
||||
clutter_stage_view_init (ClutterStageView *view)
|
||||
{
|
||||
ClutterStageViewPrivate *priv =
|
||||
clutter_stage_view_get_instance_private (view);
|
||||
|
||||
priv->dirty_viewport = TRUE;
|
||||
priv->dirty_projection = TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user