Sign in
fuchsia
/
third_party
/
llvm-project
/
c3fd2a50ba1395b6c2240f6a688c6a1aa975a1fe
/
.
/
libclc
/
r600
/
lib
/
image
/
write_imagef.cl
blob: 4483fcf68dbe6724158d8c810c460fdf6e4c9b58 [
file
] [
log
] [
blame
]
#
include
<
clc
/
clc
.
h
>
_CLC_DECL void __clc_write_imagef_2d
(
image2d_t image
,
int2 coord
,
float4 color
)
;
_CLC_OVERLOAD _CLC_DEF void
write_imagef
(
image2d_t image
,
int2 coord
,
float4 color
)
{
__clc_write_imagef_2d
(
image
,
coord
,
color
)
;
}