]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/datatype.h
Move all OpenGL-specific code to a separate directory
[libs/gl.git] / source / core / datatype.h
index 1620dc58933d7fe1b5f9ae130ab7bff7fa104c11..8111dd77f634b341f7c60cab6b1e4fc1533ca727 100644 (file)
@@ -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