mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 06:10:12 +01:00
mesa: use _mesa_set_scissor() in ScissorIndexed()
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
parent
ee38dfe9a5
commit
e8de0e124f
1 changed files with 1 additions and 4 deletions
|
|
@ -192,10 +192,7 @@ ScissorIndexed(GLuint index, GLint left, GLint bottom,
|
|||
return;
|
||||
}
|
||||
|
||||
set_scissor_no_notify(ctx, index, left, bottom, width, height);
|
||||
|
||||
if (ctx->Driver.Scissor)
|
||||
ctx->Driver.Scissor(ctx);
|
||||
_mesa_set_scissor(ctx, index, left, bottom, width, height);
|
||||
}
|
||||
|
||||
void GLAPIENTRY
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue