]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/datatype.h
Use size_t to store sizes of buffers and such
[libs/gl.git] / source / core / datatype.h
index 1620dc58933d7fe1b5f9ae130ab7bff7fa104c11..a03b6bda99162f3dd6a59a8facd52c0886b59775 100644 (file)
@@ -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); }
@@ -132,12 +132,11 @@ struct TypeTraits<LinAl::Matrix<T, N, M>>
        static const DataType type = static_cast<DataType>((TypeTraits<T>::type&0xF00) | ((TypeTraits<T>::type&0xFF)*N*M) | ((N-1)<<12) | ((M-1)<<14));
 };
 
-unsigned get_gl_type(DataType);
-DataType from_gl_type(unsigned);
-
 void require_type(DataType);
 
 } // namespace GL
 } // namespace Msp
 
+#include "datatype_backend.h"
+
 #endif