Opening http://www.ro.me/film in browser then press "Begin"
makes Tizen emulator crash.
The crash is due to SwapBuffers being called with non window
parameter and non current pixmap. This parameter is provided
in client application.
// We have to assume the current context here
// since we assume that a drawable must belong to a specific context
- resize_surface(process, qsurface, (int)args[1], (int)args[2]);
+ if (qsurface)
+ resize_surface(process, qsurface, (int)args[1], (int)args[2]);
+ else
+ DEBUGF("%s Failed to find surface for client_drawable %p process %p ->current_state %p ->->current_surface %p\n", "_resize_surface_func", client_drawable, process, process->current_state, process->current_state->current_qsurface);
break;
}