Searched refs:GLToCType (Results 1 – 1 of 1) sorted by relevance
265 template <GLenum GLType> struct GLToCType { }; struct267 template <> struct GLToCType<GL_BYTE> { typedef GLbyte type; }; struct268 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; }; struct271 template <> struct GLToCType<GL_FIXED> { typedef GLuint type; }; struct272 template <> struct GLToCType<GL_FLOAT> { typedef GLfloat type; }; struct356 struct ConversionRule : Cast<typename GLToCType<fromType>::type, typename D3DToCType<toType>::type>…359 …struct ConversionRule<fromType, true, D3DVT_FLOAT> : Normalize<typename GLToCType<fromType>::type>…386 : VertexDataConverter<typename GLToCType<fromType>::type,