From bd44ed78fa26d76a43c87433acbad0ccf356b4aa Mon Sep 17 00:00:00 2001 From: Seungsoo Woo Date: Fri, 10 Feb 2012 13:57:13 +0900 Subject: [PATCH] Fastpath is always enabled for test. --- src/modules/engines/gl_common/evas_gl_core.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/modules/engines/gl_common/evas_gl_core.c b/src/modules/engines/gl_common/evas_gl_core.c index fd92439..ada3493 100644 --- a/src/modules/engines/gl_common/evas_gl_core.c +++ b/src/modules/engines/gl_common/evas_gl_core.c @@ -5492,7 +5492,8 @@ init_gl() Evas_GL_Opt_Flag api_opt = GL_NORMAL_PATH; fprintf(stderr, "Initializing OpenGL APIs...\n"); - +// Fastpath is always enabled for test. +#if 0 fp_env = getenv("EVAS_GL_FASTPATH"); if (fp_env) fastpath_opt = atoi(fp_env); @@ -5513,7 +5514,10 @@ init_gl() api_opt = GL_NORMAL_PATH; break; } - +#else + api_opt = GL_FAST_PATH; + fprintf(stderr, "API OPT: Fastpath enabled...\n"); +#endif if (!gl_lib_init()) return 0; override_glue_apis(api_opt); -- 2.7.4