summaryrefslogtreecommitdiff
path: root/utests/compiler_fill_image.cpp
diff options
context:
space:
mode:
authorHomer Hsing <homer.xing@intel.com>2013-06-19 14:49:51 +0800
committerZhigang Gong <zhigang.gong@linux.intel.com>2013-06-19 15:50:53 +0800
commit89c8e77f9245c4acab6c18390b0fef07b1ba78f2 (patch)
tree26d913ad626d5ecb11358f89a0b5e3aa1fc42bea /utests/compiler_fill_image.cpp
parent2cacc799f7ef1dff006c97360298e4f6e847d1e9 (diff)
downloadbeignet-89c8e77f9245c4acab6c18390b0fef07b1ba78f2.tar.gz
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 'utests/compiler_fill_image.cpp')
-rw-r--r--utests/compiler_fill_image.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/utests/compiler_fill_image.cpp b/utests/compiler_fill_image.cpp
index c9242b25..2f9fe3d9 100644
--- a/utests/compiler_fill_image.cpp
+++ b/utests/compiler_fill_image.cpp
@@ -6,19 +6,14 @@ static void compiler_fill_image(void)
const size_t h = 512;
uint32_t color = 0x12345678;
cl_image_format format;
- cl_image_desc desc;
format.image_channel_order = CL_RGBA;
format.image_channel_data_type = CL_UNSIGNED_INT8;
- desc.image_type = CL_MEM_OBJECT_IMAGE2D;
- desc.image_width = w;
- desc.image_height = h;
- desc.image_row_pitch = 0;
// Setup kernel and images
OCL_CREATE_KERNEL("test_fill_image");
- OCL_CREATE_IMAGE(buf[0], 0, &format, &desc, NULL);
+ OCL_CREATE_IMAGE2D(buf[0], 0, &format, w, h, 0, NULL);
// Run the kernel
OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);