xref: /llvm-project/libclc/r600/lib/image/get_image_channel_order.cl (revision 3d349ea98e2bdf0493920acb4f7f6e15f0c4b9c2)
1#include <clc/clc.h>
2
3_CLC_DECL int __clc_get_image_channel_order_2d(image2d_t);
4_CLC_DECL int __clc_get_image_channel_order_3d(image3d_t);
5
6_CLC_OVERLOAD _CLC_DEF int
7get_image_channel_order(image2d_t image) {
8  return __clc_get_image_channel_order_2d(image);
9}
10_CLC_OVERLOAD _CLC_DEF int
11get_image_channel_order(image3d_t image) {
12  return __clc_get_image_channel_order_3d(image);
13}
14