X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fdatatype.h;fp=source%2Fcore%2Fdatatype.h;h=ccd288c9ebc75f2f13c3fc8b8098e5968d9805f6;hb=6f39983060a27634c012f66c82fea0d09fea9774;hp=c7ee2841bded09cd4e23e5c1414c6695db25dc67;hpb=3af09f06e9f69532e5adfe6bcd9a7b2d1aea6d5b;p=libs%2Fgl.git diff --git a/source/core/datatype.h b/source/core/datatype.h index c7ee2841..ccd288c9 100644 --- a/source/core/datatype.h +++ b/source/core/datatype.h @@ -93,6 +93,7 @@ enum DataType inline unsigned get_type_size(DataType t) { return t&0xFF; } 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; } GLenum get_gl_type(DataType); DataType from_gl_type(GLenum);