From 37b81297cb97b235c7df8950e6cc9112979e04f5 Mon Sep 17 00:00:00 2001 From: Jan Vesely Date: Wed, 13 Nov 2013 11:34:32 -0500 Subject: [PATCH 1/1] opencl: Don't load some unused extensions. These are not available on mesa. Signed-off-by: Jan Vesely --- gegl/opencl/gegl-cl-init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gegl/opencl/gegl-cl-init.c b/gegl/opencl/gegl-cl-init.c index 3cc26ab..87a8628 100644 --- a/gegl/opencl/gegl-cl-init.c +++ b/gegl/opencl/gegl-cl-init.c @@ -505,9 +505,9 @@ gegl_cl_init_load_functions (GError **error) CL_LOAD_FUNCTION (clReleaseContext) CL_LOAD_FUNCTION (clReleaseMemObject) - CL_LOAD_FUNCTION (clCreateFromGLTexture2D) - CL_LOAD_FUNCTION (clEnqueueAcquireGLObjects) - CL_LOAD_FUNCTION (clEnqueueReleaseGLObjects) +// CL_LOAD_FUNCTION (clCreateFromGLTexture2D) +// CL_LOAD_FUNCTION (clEnqueueAcquireGLObjects) +// CL_LOAD_FUNCTION (clEnqueueReleaseGLObjects) return TRUE; } -- 1.8.4.2