mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-17 04:10:24 +01:00
nv50: fix line stipple
This commit is contained in:
parent
fea9eb2842
commit
e52d37d56c
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ nv50_rasterizer_state_create(struct pipe_context *pipe,
|
|||
so_method(so, tesla, NV50TCL_LINE_STIPPLE_ENABLE, 1);
|
||||
so_data (so, 1);
|
||||
so_method(so, tesla, NV50TCL_LINE_STIPPLE_PATTERN, 1);
|
||||
so_data (so, (cso->line_stipple_pattern << 16) |
|
||||
so_data (so, (cso->line_stipple_pattern << 8) |
|
||||
cso->line_stipple_factor);
|
||||
} else {
|
||||
so_method(so, tesla, NV50TCL_LINE_STIPPLE_ENABLE, 1);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue