summaryrefslogtreecommitdiff
path: root/utests/compiler_fill_image.cpp
diff options
context:
space:
mode:
authorZhigang Gong <zhigang.gong@linux.intel.com>2013-02-21 17:09:51 +0800
committerZhigang Gong <zhigang.gong@linux.intel.com>2013-04-10 14:52:33 +0800
commit12f08a61b5933baf9ceb24609b95cb1cb85d88c8 (patch)
tree8f2c170525bb23bcf3069b535b78369ef00ab820 /utests/compiler_fill_image.cpp
parentc8d17cda7725791e346270563d13d1154605a9b9 (diff)
downloadbeignet-12f08a61b5933baf9ceb24609b95cb1cb85d88c8.tar.gz
Use new OCL1.2 API rather than those deprecated API.
Use clCreateImage to replace the old API clCreateImage2D. It will silent the compiler warnings. Signed-off-by: Zhigang Gong <zhigang.gong@linux.intel.com> Reviewed-by: Homer Hsing <homer.xing@intel.com>
Diffstat (limited to 'utests/compiler_fill_image.cpp')
-rw-r--r--utests/compiler_fill_image.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/utests/compiler_fill_image.cpp b/utests/compiler_fill_image.cpp
index b15cdffe..c9744ccf 100644
--- a/utests/compiler_fill_image.cpp
+++ b/utests/compiler_fill_image.cpp
@@ -4,16 +4,21 @@ static void compiler_fill_image(void)
{
const size_t w = 512;
const size_t h = 512;
- cl_image_format format;
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 = w * sizeof(uint32_t);
// Setup kernel and images
OCL_CREATE_KERNEL("test_fill_image");
- OCL_CREATE_IMAGE(buf[0], 0, &format, w, h, w * sizeof(uint32_t), NULL);
+ OCL_CREATE_IMAGE(buf[0], 0, &format, &desc, NULL);
// Run the kernel
OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);