Reviewed-by: Lionel Landwerlin <[email protected]>

On 26/11/17 09:27, Kenneth Graunke wrote:
We want to program the 3DSTATE_RASTER field to the gl_context value,
not the other way around.

Fixes: 13ac46557ab1 (i965: Port Gen8+ 3DSTATE_RASTER state to genxml.)
---
  src/mesa/drivers/dri/i965/genX_state_upload.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c 
b/src/mesa/drivers/dri/i965/genX_state_upload.c
index 112f48181b0..2808363e3ad 100644
--- a/src/mesa/drivers/dri/i965/genX_state_upload.c
+++ b/src/mesa/drivers/dri/i965/genX_state_upload.c
@@ -4322,7 +4322,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);


_______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to