mesa: Return after ScissorArrayv or ScissorIndexed detect a parameter error
Fixes piglit arb_viewport_array-scissor-ignore. Signed-off-by: Courtney Goeltzenleuchter <courtney@LunarG.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Jon Ashburn <jon@lunarg.com>
This commit is contained in:
parent
ca385bffa6
commit
3e894e213b
1 changed files with 2 additions and 0 deletions
|
|
@ -145,6 +145,7 @@ _mesa_ScissorArrayv(GLuint first, GLsizei count, const GLint *v)
|
|||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glScissorArrayv: index (%d) width or height < 0 (%d, %d)",
|
||||
i, p[i].Width, p[i].Height);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -187,6 +188,7 @@ ScissorIndexed(GLuint index, GLint left, GLint bottom,
|
|||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"%s: index (%d) width or height < 0 (%d, %d)",
|
||||
function, index, width, height);
|
||||
return;
|
||||
}
|
||||
|
||||
set_scissor_no_notify(ctx, index, left, bottom, width, height);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue