Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
81fe1fbf4abd00b24e078a80cb15a2d2c1343f11
/
.
/
libclc
/
r600
/
lib
/
image
/
write_imagei.cl
blob: 394a223d0a8c1186d2d104e267e99610133be312 [
file
] [
log
] [
blame
]
#
include
<
clc
/
clc
.
h
>
_CLC_DECL void __clc_write_imagei_2d
(
image2d_t image
,
int2 coord
,
int4 color
)
;
_CLC_OVERLOAD _CLC_DEF void
write_imagei
(
image2d_t image
,
int2 coord
,
int4 color
)
{
__clc_write_imagei_2d
(
image
,
coord
,
color
)
;
}