mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
i965: Fix Smooth Point Enables.
We want to program the 3DSTATE_RASTER field to the gl_context value, not the other way around. Fixes:13ac46557a(i965: Port Gen8+ 3DSTATE_RASTER state to genxml.) Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> (cherry picked from commit760e0156df)
This commit is contained in:
parent
f768744970
commit
88fd81d3a3
1 changed files with 1 additions and 1 deletions
|
|
@ -4332,7 +4332,7 @@ genX(upload_raster)(struct brw_context *brw)
|
|||
raster.CullMode = CULLMODE_NONE;
|
||||
}
|
||||
|
||||
point->SmoothFlag = raster.SmoothPointEnable;
|
||||
raster.SmoothPointEnable = point->SmoothFlag;
|
||||
|
||||
raster.DXMultisampleRasterizationEnable =
|
||||
_mesa_is_multisample_enabled(ctx);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue