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