summaryrefslogtreecommitdiff
path: root/utests/compiler_fill_image.cpp
diff options
context:
space:
mode:
authorZhigang Gong <zhigang.gong@linux.intel.com>2013-04-19 16:31:09 +0800
committerZhigang Gong <zhigang.gong@linux.intel.com>2013-04-22 17:42:42 +0800
commitef83bc2790d6be7e0e70a90e3b2cf0cb0dc852ca (patch)
treeb601e2c044eef5ded4b4d27802c0bf94523b1a14 /utests/compiler_fill_image.cpp
parent9c11c18544992a456e6eab8da2949ebd134a4e44 (diff)
downloadbeignet-ef83bc2790d6be7e0e70a90e3b2cf0cb0dc852ca.tar.gz
utests: should set pitch to zero if host_ptr is NULL.
Per OCL spec, we should set pitch to zero if the host_ptr is NULL. Signed-off-by: Zhigang Gong <zhigang.gong@linux.intel.com> Simon Richter <Simon.Richter@hogyros.de>
Diffstat (limited to 'utests/compiler_fill_image.cpp')
-rw-r--r--utests/compiler_fill_image.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utests/compiler_fill_image.cpp b/utests/compiler_fill_image.cpp
index c9744ccf..c9242b25 100644
--- a/utests/compiler_fill_image.cpp
+++ b/utests/compiler_fill_image.cpp
@@ -13,7 +13,7 @@ static void compiler_fill_image(void)
desc.image_type = CL_MEM_OBJECT_IMAGE2D;
desc.image_width = w;
desc.image_height = h;
- desc.image_row_pitch = w * sizeof(uint32_t);
+ desc.image_row_pitch = 0;
// Setup kernel and images
OCL_CREATE_KERNEL("test_fill_image");