summaryrefslogtreecommitdiff
path: root/src/Makefile_Evas.am
diff options
context:
space:
mode:
authorCedric Bail <cedric.bail@samsung.com>2013-06-24 11:41:32 +0900
committerCedric Bail <cedric.bail@samsung.com>2013-06-24 12:04:18 +0900
commitd06a0982ef3d156059b2264d4494e036cbe409ee (patch)
tree2895f26d9a65fd81045601505d650b8e2034b79a /src/Makefile_Evas.am
parent8e3d94d66130f16cec0d518a0ad6ec5fae04fec9 (diff)
evas: add support for asynchronously uploading GL texture.
NOTE: when using Evas_Object image preload infrastructure the GL texture upload was uploaded from the main loop during the rendering stage. This could lead to some frame drop during fast animation due to the time needed to upload that texture. This patch fix this problem by uploading a small texture quickly (16x16) and waiting for going back to the main loop to be able to use the same GL context from another thread to do the texture upload asynchronously without blocking the main loop.
Diffstat (limited to 'src/Makefile_Evas.am')
-rw-r--r--src/Makefile_Evas.am1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile_Evas.am b/src/Makefile_Evas.am
index 7cc9433e0..d4fe9aaba 100644
--- a/src/Makefile_Evas.am
+++ b/src/Makefile_Evas.am
@@ -438,6 +438,7 @@ modules/evas/engines/gl_common/evas_gl_file_cache.c \
modules/evas/engines/gl_common/evas_gl_shader.c \
modules/evas/engines/gl_common/evas_gl_rectangle.c \
modules/evas/engines/gl_common/evas_gl_texture.c \
+modules/evas/engines/gl_common/evas_gl_preload.c \
modules/evas/engines/gl_common/evas_gl_image.c \
modules/evas/engines/gl_common/evas_gl_font.c \
modules/evas/engines/gl_common/evas_gl_polygon.c \