mesa: handle GL_UNSIGNED_INT64_ARB properly (v2)
[mesa.git] / src / mesa / main / glformats.c
index cba5e670db01546a56c63d547b4162d63add2108..667020c193c92f5ca0e21ca1257d953d294a67e2 100644 (file)
@@ -563,6 +563,8 @@ _mesa_bytes_per_vertex_attrib(GLint comps, GLenum type)
          return sizeof(GLuint);
       else
          return -1;
+   case GL_UNSIGNED_INT64_ARB:
+      return comps * 8;
    default:
       return -1;
    }