23 lines
476 B
Plaintext
23 lines
476 B
Plaintext
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
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);
|
|
}
|
|
)==="
|