Signed-off-by: Chris Forbes <chr...@ijw.co.nz> --- src/mesa/main/glformats.c | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/src/mesa/main/glformats.c b/src/mesa/main/glformats.c index dfee6f1..740faa8 100644 --- a/src/mesa/main/glformats.c +++ b/src/mesa/main/glformats.c @@ -345,6 +345,11 @@ _mesa_bytes_per_vertex_attrib(GLint comps, GLenum type) return sizeof(GLuint); else return -1; + case GL_UNSIGNED_INT_10F_11F_11F_REV: + if (comps == 3) + return sizeof(GLuint); + else + return -1; default: return -1; } -- 1.8.4.2 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev