diff options
author | Homer Hsing <homer.xing@intel.com> | 2013-06-19 14:49:51 +0800 |
---|---|---|
committer | Zhigang Gong <zhigang.gong@linux.intel.com> | 2013-06-19 15:50:53 +0800 |
commit | 89c8e77f9245c4acab6c18390b0fef07b1ba78f2 (patch) | |
tree | 26d913ad626d5ecb11358f89a0b5e3aa1fc42bea /src/cl_mem_gl.c | |
parent | 2cacc799f7ef1dff006c97360298e4f6e847d1e9 (diff) |
update to OpenCL 1.1 header
Based on our current progress, we plan to implement OpenCL 1.1 rather
than OpenCL 1.2 for the next release. Thus we downgrade the header file
to 1.1 in this commit.
put OpenCL 1.1 header in include/CL/
add OpenCL 1.2 defs, used by some code, by
"#ifndef CL_VERSION_1.2"
" some OpenCL 1.2 defs"
"#endif"
add OCL_CREATE_IMAGE2D, OCL_CREATE_IMAGE3D,
OCL_CREATE_GL_IMAGE2D, OCL_CREATE_GL_IMAGE3D
update test cases
Signed-off-by: Homer Hsing <homer.xing@intel.com>
Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Diffstat (limited to 'src/cl_mem_gl.c')
-rw-r--r-- | src/cl_mem_gl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cl_mem_gl.c b/src/cl_mem_gl.c index 930107fb..c2a53954 100644 --- a/src/cl_mem_gl.c +++ b/src/cl_mem_gl.c @@ -37,6 +37,10 @@ #include "CL/cl_intel.h" #include "CL/cl_gl.h" +#ifndef CL_VERSION_1_2 +#define CL_INVALID_IMAGE_DESCRIPTOR -65 +#endif + static int cl_get_clformat_from_texture(GLint tex_format, cl_image_format * cl_format) { cl_int ret = CL_SUCCESS; |