X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fdatatype.h;h=29789907cdb78ca9863c328251aa826419b72442;hb=2a70fecfbbe8708be2bdaa75d222dd5a889a8ed3;hp=d2739c49b6f7471ad3fed90c5e12de0ec27f4911;hpb=d98c4bd5cafaa1d611a09794883eb367e58e10b8;p=libs%2Fgl.git diff --git a/source/core/datatype.h b/source/core/datatype.h index d2739c49..29789907 100644 --- a/source/core/datatype.h +++ b/source/core/datatype.h @@ -101,6 +101,7 @@ inline bool is_float(DataType t) { return t&0x200; } inline bool is_matrix(DataType t) { return t&0xC000; } inline bool is_vector(DataType t) { return !is_matrix(t) && (t&0x3000); } inline bool is_image(DataType t) { return t&0x70000; } +inline bool is_sampled_image(DataType t) { return t&0x100000; } inline DataType get_matrix_column_type(DataType t) {