mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
fix unhandled switch/case warning
This commit is contained in:
parent
050837045f
commit
8f1a0decad
1 changed files with 4 additions and 0 deletions
|
|
@ -717,6 +717,10 @@ setup_line_coefficients(struct setup_stage *setup, struct prim_header *prim)
|
|||
for (j = 0; j < NUM_CHANNELS; j++)
|
||||
line_persp_coeff(setup, slot, j);
|
||||
break;
|
||||
|
||||
default:
|
||||
/* invalid interp mode */
|
||||
assert(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue