[PATCH] ivi-shell: set an initial value for ivi-surface.
Nobuhiko Tanibata
nobuhiko_tanibata at xddp.denso.co.jp
Mon Apr 27 01:02:54 PDT 2015
Especially, the size of destination rectagle is set to (1,1).
This is because the size will be used for caluculating scale and not to
be 0 to avoid 0 dividing.
I also remark this as FIXME. This shall be fixed at ivi-layout-tansition.c.
In new invoded application, its property is initilized by (0,0)
destination rectangle. So transition fucntion always calculates its scale
as inf at first frame of fade-in with new invoked application. To fix this,
restructing transition function is ideally needed.
Signed-off-by: Nobuhiko Tanibata <nobuhiko_tanibata at xddp.denso.co.jp>
Acked-by: Pekka Paalanen <pekka.paalanen at collabora.co.uk>
---
ivi-shell/ivi-layout.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/ivi-shell/ivi-layout.c b/ivi-shell/ivi-layout.c
index 9c05713..3eed021 100644
--- a/ivi-shell/ivi-layout.c
+++ b/ivi-shell/ivi-layout.c
@@ -464,6 +464,11 @@ init_surface_properties(struct ivi_layout_surface_properties *prop)
{
memset(prop, 0, sizeof *prop);
prop->opacity = wl_fixed_from_double(1.0);
+ /*
+ * FIXME: this shall be finxed by ivi-layout-transition.
+ */
+ prop->dest_width = 1;
+ prop->dest_height = 1;
}
/**
--
1.8.3.1
More information about the wayland-devel
mailing list