[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / libclc / r600 / lib / image / get_image_channel_order.cl
blob91e9b89e17e62547c41a549a4b6b8f3b3cd1e9ed
1 #include <clc/clc.h>
3 _CLC_DECL int __clc_get_image_channel_order_2d(image2d_t);
4 _CLC_DECL int __clc_get_image_channel_order_3d(image3d_t);
6 _CLC_OVERLOAD _CLC_DEF int
7 get_image_channel_order(image2d_t image) {
8 return __clc_get_image_channel_order_2d(image);
10 _CLC_OVERLOAD _CLC_DEF int
11 get_image_channel_order(image3d_t image) {
12 return __clc_get_image_channel_order_3d(image);