mesa: added case for fixed pt

This commit is contained in:
Brian Paul 2008-07-03 14:12:27 -06:00 committed by Keith Whitwell
parent 1cf2c8a043
commit 48cba703fa
1 changed files with 5 additions and 0 deletions

View File

@ -606,6 +606,11 @@ _mesa_VertexAttribPointerARB(GLuint index, GLint size, GLenum type,
case GL_DOUBLE:
elementSize = size * sizeof(GLdouble);
break;
#if FEATURE_fixedpt
case GL_FIXED:
elementSize = size * sizeof(GLfixed);
break;
#endif
default:
_mesa_error( ctx, GL_INVALID_ENUM, "glVertexAttribPointerARB(type)" );
return;