vbo: MaxVertexAttribStride is not always set

This assert is hit on hardware which does not expose GL 4.4 or GLES 3.1.

Reviewed-by: Mathias Fröhlich <mathias.froehlich@web.de>
Signed-off-by: Jakob Bornecrantz <jakob@collabora.com>
This commit is contained in:
Jakob Bornecrantz 2018-03-30 16:00:09 +01:00
parent 696762eef5
commit e16b92ad7e
1 changed files with 6 additions and 1 deletions

View File

@ -492,8 +492,13 @@ update_vao(struct gl_context *ctx,
_mesa_reference_vao(ctx, vao, NULL);
*vao = _mesa_new_vao(ctx, ~((GLuint)0));
/*
* assert(stride <= ctx->Const.MaxVertexAttribStride);
* MaxVertexAttribStride is not set for drivers that does not
* expose GL 44 or GLES 31.
*/
/* Bind the buffer object at binding point 0 */
assert(stride <= ctx->Const.MaxVertexAttribStride);
_mesa_bind_vertex_buffer(ctx, *vao, 0, bo, buffer_offset, stride, false);
/* Retrieve the mapping from VBO_ATTRIB to VERT_ATTRIB space