[Mesa-dev] [PATCH] mesa: Move sanity check of BindVertexBuffer for OpenGL ES 3.1
Ian Romanick
idr at freedesktop.org
Tue Jan 19 12:15:31 PST 2016
On 01/08/2016 05:55 AM, Marta Lofstedt wrote:
> From: Marta Lofstedt <marta.lofstedt at intel.com>
>
> Sanity check of BindVertexBuffer for OpenGL ES in
> _mesa_handle_bind_buffer_gen breaks OpenGL ES 2 conformance.
What was previously broken, and why does this fix it? I think it's also
worth mentioning that this is a revert of
6c3de8996fbe9447e092cc75ccdd6f720fabaf4d.
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93426
> Signed-off-by: Marta Lofstedt <marta.lofstedt at intel.com>
> ---
> src/mesa/main/bufferobj.c | 2 +-
> src/mesa/main/varray.c | 8 +++++++-
> 2 files changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c
> index d7c5680..3ca1b3a 100644
> --- a/src/mesa/main/bufferobj.c
> +++ b/src/mesa/main/bufferobj.c
> @@ -953,7 +953,7 @@ _mesa_handle_bind_buffer_gen(struct gl_context *ctx,
> {
> struct gl_buffer_object *buf = *buf_handle;
>
> - if (!buf && (ctx->API == API_OPENGL_CORE || _mesa_is_gles31(ctx))) {
> + if (!buf && (ctx->API == API_OPENGL_CORE)) {
> _mesa_error(ctx, GL_INVALID_OPERATION, "%s(non-gen name)", caller);
> return false;
> }
> diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c
> index c71e16a..a8d757b 100644
> --- a/src/mesa/main/varray.c
> +++ b/src/mesa/main/varray.c
> @@ -1754,8 +1754,14 @@ vertex_array_vertex_buffer(struct gl_context *ctx,
> * Otherwise, we fall back to the same compat profile behavior as other
> * object references (automatically gen it).
> */
> - if (!_mesa_handle_bind_buffer_gen(ctx, buffer, &vbo, func))
> + if (!_mesa_handle_bind_buffer_gen(ctx, buffer, &vbo, func)) {
> + return;
> + }
> +
> + if (!vbo && _mesa_is_gles31(ctx)) {
> + _mesa_error(ctx, GL_INVALID_OPERATION, "%s(non-gen name)", func);
> return;
> + }
> } else {
> /* The ARB_vertex_attrib_binding spec says:
> *
>
More information about the mesa-dev
mailing list