Searched defs:GLToCType (Results 1 – 1 of 1) sorted by relevance
286 template <GLenum GLType> struct GLToCType { }; struct288 template <> struct GLToCType<GL_BYTE> { typedef GLbyte type; }; argument289 template <> struct GLToCType<GL_UNSIGNED_BYTE> { typedef GLubyte type; }; struct290 template <> struct GLToCType<GL_SHORT> { typedef GLshort type; }; argument291 template <> struct GLToCType<GL_UNSIGNED_SHORT> { typedef GLushort type; }; argument292 template <> struct GLToCType<GL_FIXED> { typedef GLuint type; }; argument293 template <> struct GLToCType<GL_FLOAT> { typedef GLfloat type; }; struct