ecore_evas: removed author's name from source code as the author requested it.

Git log should be enough for the credit :)

This code was merged into efl upstream by devilhorn's aggressive synchronization between efl upstream and tizen.
But that commit didn't have the author's credit.
However We will never forget the contribution of Gwanglim Lee <gl77.lee@samsung.com>.
This commit is contained in:
Daniel Juyung Seo 2013-12-18 23:47:29 +09:00
parent 17fe60d0db
commit c4b7f83ef6
2 changed files with 5 additions and 5 deletions

View File

@ -261,7 +261,7 @@ struct _Ecore_Evas
unsigned char no_comp_sync : 1;
unsigned char semi_sync : 1;
unsigned char deleted : 1;
int gl_sync_draw_done; // added by gl77.lee
int gl_sync_draw_done;
unsigned char profile_supported : 1;
unsigned char in_async_render : 1;
unsigned char can_async_render : 1;

View File

@ -1433,7 +1433,7 @@ _ecore_evas_x_event_window_show(void *data EINA_UNUSED, int type EINA_UNUSED, vo
if (e->win != ee->prop.window) return ECORE_CALLBACK_PASS_ON;
/* some GL drivers are doing buffer copy in a separate thread.
* we need to check whether GL driver sends SYNC_DRAW_DONE msg afger copying
* that are required in order to exactly render. - added by gl77.lee
* that are required in order to exactly render.
*/
if (ee->gl_sync_draw_done < 0)
{
@ -3379,7 +3379,7 @@ _ecore_evas_x_flush_post(void *data, Evas *e EINA_UNUSED, void *event_info EINA_
}
if ((!ee->no_comp_sync) && (_ecore_evas_app_comp_sync) &&
(!ee->gl_sync_draw_done)) // added by gl77.lee
(!ee->gl_sync_draw_done))
{
if (edata->sync_counter)
{
@ -3972,7 +3972,7 @@ ecore_evas_gl_x11_options_new_internal(const char *disp_name, Ecore_X_Window par
ECORE_MAGIC_SET(ee, ECORE_MAGIC_EVAS);
ee->gl_sync_draw_done = -1; // added by gl77.lee
ee->gl_sync_draw_done = -1;
_ecore_evas_x_init();
@ -4109,7 +4109,7 @@ ecore_evas_gl_x11_pixmap_new_internal(const char *disp_name, Ecore_X_Window pare
ECORE_MAGIC_SET(ee, ECORE_MAGIC_EVAS);
ee->gl_sync_draw_done = -1; // added by gl77.lee
ee->gl_sync_draw_done = -1;
_ecore_evas_x_init();