X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fdatatype.h;h=8111dd77f634b341f7c60cab6b1e4fc1533ca727;hb=160e9eea29bd10034733d59507fa1bcca36be401;hp=7188cb5a9c847b37a8f455d682ad660189e131f5;hpb=729a477b47e97aea41f3f0b5db551f02bf70d1ee;p=libs%2Fgl.git diff --git a/source/core/datatype.h b/source/core/datatype.h index 7188cb5a..8111dd77 100644 --- a/source/core/datatype.h +++ b/source/core/datatype.h @@ -3,7 +3,6 @@ #include #include -#include "gl.h" namespace Msp { namespace GL { @@ -133,12 +132,11 @@ struct TypeTraits> static const DataType type = static_cast((TypeTraits::type&0xF00) | ((TypeTraits::type&0xFF)*N*M) | ((N-1)<<12) | ((M-1)<<14)); }; -GLenum get_gl_type(DataType); -DataType from_gl_type(GLenum); - void require_type(DataType); } // namespace GL } // namespace Msp +#include "datatype_backend.h" + #endif