+* 1.4.65
+- Fix emulator crash when using EffectsApp.
+== Sangjin Kim <sangjin3.kim@samsung.com> 2013-01-17
* 1.4.64
- removed ifndef for screenshot
== Sungmin Ha <sungmin82.ha@samsung.com> 2013-01-17
static void destroy_gl_state(GLState *state)
{
int i;
+
+ /* XXX:Current limitation is that each surface is binded to one
+ * context, thus not support sharing surface between contexts. If guest
+ * does this, deleting surface in one context make trouble to other
+ * context. Leave the work until the uninitialization. Need clean the code
+ * and decouple the context and surface in future.
+ */
+#if 0
QGloSurface *qsurface, *tmp;
QTAILQ_FOREACH_SAFE(qsurface, &state->qsurfaces, next, tmp) {
QTAILQ_REMOVE(&state->qsurfaces, qsurface, next);
g_free(qsurface);
}
+#endif
if (state->context)
glo_context_destroy(state->context);