From: Marta Lofstedt Date: Wed, 19 Aug 2015 18:25:22 +0000 (+0200) Subject: mesa/es3.1 : Align OpenGL ES 3.1 glBindVertexBuffer error handling with OpenGL Core X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6c3de8996fbe9447e092cc75ccdd6f720fabaf4d;p=mesa.git mesa/es3.1 : Align OpenGL ES 3.1 glBindVertexBuffer error handling with OpenGL Core According to OpenGL ES 3.1 specification 10.3.1: "An INVALID_OPERATION error is generated if buffer is not zero or a name returned from a previous call to GenBuffers, or if such a name has since been deleted with DeleteBuffers." This error check was previously limited to OpenGL Core. Signed-off-by: Marta Lofstedt --- diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index 3b87654c5d2..23da83e8b80 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -916,7 +916,7 @@ _mesa_handle_bind_buffer_gen(struct gl_context *ctx, { struct gl_buffer_object *buf = *buf_handle; - if (!buf && ctx->API == API_OPENGL_CORE) { + if (!buf && (ctx->API == API_OPENGL_CORE || _mesa_is_gles31(ctx))) { _mesa_error(ctx, GL_INVALID_OPERATION, "%s(non-gen name)", caller); return false; }