Searched defs:GLToCType (Results 1 – 1 of 1) sorted by relevance
265 template <GLenum GLType> struct GLToCType { }; struct267 template <> struct GLToCType<GL_BYTE> { typedef GLbyte type; }; argument268 template <> struct GLToCType<GL_UNSIGNED_BYTE> { typedef GLubyte type; }; argument269 template <> struct GLToCType<GL_SHORT> { typedef GLshort type; }; struct270 template <> struct GLToCType<GL_UNSIGNED_SHORT> { typedef GLushort type; }; argument271 template <> struct GLToCType<GL_FIXED> { typedef GLuint type; }; argument272 template <> struct GLToCType<GL_FLOAT> { typedef GLfloat type; }; struct