mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 05:28:05 +02:00
r300: Corrected r300LineWidth based on dumping the blob.
The OpenGL specification also verifies the default line width should be 1.0.
This commit is contained in:
parent
7c008f365b
commit
da1d9d9795
1 changed files with 3 additions and 3 deletions
|
|
@ -715,8 +715,8 @@ static void r300LineWidth(GLcontext * ctx, GLfloat widthf)
|
|||
widthf = ctx->Line._Width;
|
||||
|
||||
R300_STATECHANGE(r300, lcntl);
|
||||
r300->hw.lcntl.cmd[1] = (int)(widthf * 6.0);
|
||||
r300->hw.lcntl.cmd[1] |= R300_LINE_CNT_VE;
|
||||
r300->hw.lcntl.cmd[1] |=
|
||||
R300_LINE_CNT_HO | R300_LINE_CNT_VE | (int)(widthf * 6.0);
|
||||
}
|
||||
|
||||
static void r300PolygonMode(GLcontext * ctx, GLenum face, GLenum mode)
|
||||
|
|
@ -1922,7 +1922,7 @@ static void r300ResetHwState(r300ContextPtr r300)
|
|||
r300->hw.unk4230.cmd[2] = 0x00020006;
|
||||
r300->hw.unk4230.cmd[3] = r300PackFloat32(1.0 / 192.0);
|
||||
|
||||
r300LineWidth(ctx, 0.0);
|
||||
r300LineWidth(ctx, 1.0);
|
||||
|
||||
r300->hw.unk4260.cmd[1] = 0;
|
||||
r300->hw.unk4260.cmd[2] = r300PackFloat32(0.0);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue