mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 13:00:09 +01:00
util: Fix reduction of line adjacency primitives.
Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
parent
b7283834dc
commit
7e112c604e
1 changed files with 2 additions and 0 deletions
|
|
@ -118,7 +118,9 @@ static INLINE unsigned u_reduced_prim( unsigned pipe_prim )
|
|||
return PIPE_PRIM_POINTS;
|
||||
|
||||
case PIPE_PRIM_LINES:
|
||||
case PIPE_PRIM_LINES_ADJACENCY:
|
||||
case PIPE_PRIM_LINE_STRIP:
|
||||
case PIPE_PRIM_LINE_STRIP_ADJACENCY:
|
||||
case PIPE_PRIM_LINE_LOOP:
|
||||
return PIPE_PRIM_LINES;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue