SVN revision: 45828
This commit is contained in:
Carsten Haitzler 2010-02-03 04:36:05 +00:00
parent b63900e442
commit ee6abe9ca0
1 changed files with 3 additions and 1 deletions

View File

@ -430,7 +430,9 @@ eng_output_redraws_next_update_push(void *data, void *surface __UNUSED__, int x
re->win->draw.drew = 1;
evas_gl_common_context_flush(re->win->gl_context);
#if defined (GLES_VARIETY_S3C6410) || defined (GLES_VARIETY_SGX)
eglWaitNative(EGL_CORE_NATIVE_ENGINE); // previous rendering should be done and swapped
// no neeed - eglSwapBuffers() should waitnative at end of swap...
// this also may flush cpu+gpu caches etc. thus performancce hit
// eglWaitNative(EGL_CORE_NATIVE_ENGINE); // previous rendering should be done and swapped
#else
glXWaitGL();
#endif