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_imageui.cl
blob
91344de8a1df149337a85b60a46a384b9ecddc4c
1
#
include
<
clc
/
clc.h
>
2
3
_CLC_DECL void __clc_write_imageui_2d
(
image2d_t
image
,
int2 coord
,
uint4 color
)
;
4
5
_CLC_OVERLOAD _CLC_DEF void
6
write_imageui
(
image2d_t
image
,
int2 coord
,
uint4 color
)
7
{
8
__clc_write_imageui_2d
(
image
,
coord
,
color
)
;
9
}