• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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