Searched refs:GLToCType (Results 1 – 1 of 1) sorted by relevance
286 template <GLenum GLType> struct GLToCType { }; struct288 template <> struct GLToCType<GL_BYTE> { typedef GLbyte type; }; struct289 template <> struct GLToCType<GL_UNSIGNED_BYTE> { typedef GLubyte type; }; struct290 template <> struct GLToCType<GL_SHORT> { typedef GLshort type; }; struct291 template <> struct GLToCType<GL_UNSIGNED_SHORT> { typedef GLushort type; }; argument292 template <> struct GLToCType<GL_FIXED> { typedef GLuint type; }; struct293 template <> struct GLToCType<GL_FLOAT> { typedef GLfloat type; }; struct386 struct ConversionRule : gl::Cast<typename GLToCType<fromType>::type, typename D3DToCType<toType>::t…391 …ct ConversionRule<fromType, true, D3DVT_FLOAT> : gl::Normalize<typename GLToCType<fromType>::type>…425 : gl::VertexDataConverter<typename GLToCType<fromType>::type,