mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05: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:
parent
cc4a65fe94
commit
adcd0fe9b4
@ -157,6 +157,11 @@ clutter_stage_view_dispose (GObject *object)
|
|||||||
static void
|
static void
|
||||||
clutter_stage_view_init (ClutterStageView *view)
|
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
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user