mesa: Fix GL_FIXED arrays.

It is broken since 433e5e6def.
This commit is contained in:
Chia-I Wu 2010-12-09 19:05:50 +08:00
parent 05e534e6c4
commit 2d270ac090

View file

@ -154,6 +154,8 @@ _mesa_sizeof_type( GLenum type )
return sizeof(GLdouble);
case GL_HALF_FLOAT_ARB:
return sizeof(GLhalfARB);
case GL_FIXED:
return sizeof(GLfixed);
default:
return -1;
}