summaryrefslogtreecommitdiff
path: root/utests/compiler_fill_image.cpp
diff options
context:
space:
mode:
authorJunyan He <junyan.he@linux.intel.com>2014-06-13 15:07:10 +0800
committerZhigang Gong <zhigang.gong@intel.com>2014-06-13 14:41:37 +0800
commitf3b94f587ef998270a98798bbec0b82e5527a433 (patch)
tree0b3ffb50c30eff70c7b82264a4008d184a4a0264 /utests/compiler_fill_image.cpp
parentc45f5b9fdb184c411224cb9bbb886146d11f061e (diff)
downloadbeignet-f3b94f587ef998270a98798bbec0b82e5527a433.tar.gz
Add checks for clCreateImage and add 1d image creating logic
Add more check for Image creating according to the spec. Update the according image utest cases to pass it. The 1d image creating is also be added. Signed-off-by: Junyan He <junyan.he@linux.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.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/utests/compiler_fill_image.cpp b/utests/compiler_fill_image.cpp
index 2f9fe3d9..5a38b8cf 100644
--- a/utests/compiler_fill_image.cpp
+++ b/utests/compiler_fill_image.cpp
@@ -1,3 +1,4 @@
+#include <string.h>
#include "utest_helper.hpp"
static void compiler_fill_image(void)
@@ -6,14 +7,22 @@ static void compiler_fill_image(void)
const size_t h = 512;
uint32_t color = 0x12345678;
cl_image_format format;
+ cl_image_desc desc;
+
+ memset(&desc, 0x0, sizeof(cl_image_desc));
+ memset(&format, 0x0, sizeof(cl_image_format));
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_IMAGE2D(buf[0], 0, &format, w, h, 0, NULL);
+ OCL_CREATE_IMAGE(buf[0], 0, &format, &desc, NULL);
// Run the kernel
OCL_SET_ARG(0, sizeof(cl_mem), &buf[0]);