mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-28 22:40:24 +01:00
r300: Corrected a bug in r300LineWidth.
Thanks to Panagiotis Papadakos for reporting it.
This commit is contained in:
parent
171dcdfa27
commit
ed5ed6fe2f
1 changed files with 1 additions and 1 deletions
|
|
@ -715,7 +715,7 @@ static void r300LineWidth(GLcontext * ctx, GLfloat widthf)
|
|||
widthf = ctx->Line._Width;
|
||||
|
||||
R300_STATECHANGE(r300, lcntl);
|
||||
r300->hw.lcntl.cmd[1] |=
|
||||
r300->hw.lcntl.cmd[1] =
|
||||
R300_LINE_CNT_HO | R300_LINE_CNT_VE | (int)(widthf * 6.0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue