fix rotation issue with ecore-evas

SVN revision: 76596
This commit is contained in:
Carsten Haitzler 2012-09-13 10:20:17 +00:00
parent ec11fcc9c1
commit 7075120c5d
3 changed files with 9 additions and 0 deletions

View File

@ -940,3 +940,9 @@
2012-09-13 Mike Blumenkrantz
* Return -1 for ecore_con_server_fd_get() in the case that the server has already been deleted
2012-09-13 Carsten Haitzler (The Rasterman)
* Fix ecore-evas rotation handling for canvases that shows up
only on some drivers and GL implementations.

View File

@ -18,6 +18,7 @@ Fixes:
* ecore_con_url:
- Timeouts are handled correctly now (passing HTTP status 408 to
completion callback).
* ecore_evas rotation handling on some driver implementations
Improvements:

View File

@ -1616,6 +1616,8 @@ _ecore_evas_x_rotation_set_internal(Ecore_Evas *ee, int rotation, int resize,
ecore_x_window_resize(ee->prop.window, ee->req.h, ee->req.w);
ee->expecting_resize.w = ee->h;
ee->expecting_resize.h = ee->w;
evas_output_size_set(ee->evas, ee->req.h, ee->req.w);
evas_output_viewport_set(ee->evas, 0, 0, ee->req.h, ee->req.w);
}
else
{