Browse Source

mesa: added case for fixed pt

tags/mesa_20090313
Brian Paul 17 years ago
parent
commit
78388c0e37
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      src/mesa/main/varray.c

+ 5
- 0
src/mesa/main/varray.c View File

@@ -615,6 +615,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;

Loading…
Cancel
Save