X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fcore%2Fdatatype.h;h=d7414a26905a9469756783896c8f3f15acb1b4a8;hp=ccd288c9ebc75f2f13c3fc8b8098e5968d9805f6;hb=33b6ca811172d402fc891eeed9cd2a5edc28d61d;hpb=a60b558e1c327fd2e2600ad2551dc0ac648761f2 diff --git a/source/core/datatype.h b/source/core/datatype.h index ccd288c9..d7414a26 100644 --- a/source/core/datatype.h +++ b/source/core/datatype.h @@ -91,6 +91,7 @@ enum DataType }; inline unsigned get_type_size(DataType t) { return t&0xFF; } +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; }