2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2020-02-24 03:33:40 +08:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2020-02-24 03:33:40 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
R"===(
|
|
|
|
#pragma OPENCL EXTENSION cl_khr_3d_image_writes : enable
|
|
|
|
|
|
|
|
__kernel void FillImage3d(
|
|
|
|
__write_only image3d_t output,
|
|
|
|
uint4 color,
|
|
|
|
int4 dstOffset) {
|
|
|
|
const int x = get_global_id(0);
|
|
|
|
const int y = get_global_id(1);
|
|
|
|
const int z = get_global_id(2);
|
|
|
|
|
|
|
|
const int4 dstCoord = (int4)(x, y, z, 0) + dstOffset;
|
|
|
|
write_imageui(output, dstCoord, color);
|
|
|
|
}
|
|
|
|
)==="
|