repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
libclc
/
r600
/
lib
/
image
/
write_imagei.cl
blob
394a223d0a8c1186d2d104e267e99610133be312
1
#
include
<
clc
/
clc.h
>
2
3
_CLC_DECL void __clc_write_imagei_2d
(
image2d_t
image
,
int2 coord
,
int4 color
)
;
4
5
_CLC_OVERLOAD _CLC_DEF void
6
write_imagei
(
image2d_t
image
,
int2 coord
,
int4 color
)
7
{
8
__clc_write_imagei_2d
(
image
,
coord
,
color
)
;
9
}