diff options
Diffstat (limited to 'utests/compiler_fill_image.cpp')
-rw-r--r-- | utests/compiler_fill_image.cpp | 7 |
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]); |