mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 17:58:26 +02:00
mesa: remove unused var
Fixes a coverity warnings.
This commit is contained in:
parent
51e6c57054
commit
df65e64c29
1 changed files with 1 additions and 2 deletions
|
|
@ -6130,9 +6130,8 @@ static void GLAPIENTRY
|
|||
save_EndTransformFeedback(void)
|
||||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
Node *n;
|
||||
ASSERT_OUTSIDE_SAVE_BEGIN_END_AND_FLUSH(ctx);
|
||||
n = alloc_instruction(ctx, OPCODE_END_TRANSFORM_FEEDBACK, 0);
|
||||
(void) alloc_instruction(ctx, OPCODE_END_TRANSFORM_FEEDBACK, 0);
|
||||
if (ctx->ExecuteFlag) {
|
||||
CALL_EndTransformFeedbackEXT(ctx->Exec, ());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue