X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fdatatype.h;h=a03b6bda99162f3dd6a59a8facd52c0886b59775;hb=be6ffe96ecb4707599fe1a6f620c348760213d46;hp=8111dd77f634b341f7c60cab6b1e4fc1533ca727;hpb=84e0e55710123e54617d342df852007f8b60af24;p=libs%2Fgl.git diff --git a/source/core/datatype.h b/source/core/datatype.h index 8111dd77..a03b6bda 100644 --- a/source/core/datatype.h +++ b/source/core/datatype.h @@ -91,7 +91,7 @@ enum DataType SAMPLER_CUBE_ARRAY_SHADOW = 0x3C0304 }; -inline unsigned get_type_size(DataType t) { return t&0xFF; } +inline std::size_t 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); }