diff options
author | Anuj Phogat <[email protected]> | 2017-10-26 11:02:36 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2017-11-03 14:30:33 -0700 |
commit | 2d10eb5ed8e360f8c5ddf2e29e60f7059a53a6e6 (patch) | |
tree | ecac1923af3e9b250d19b3d93a42aa4d3e15112e /src/mesa | |
parent | 19fc3cdcfbd193fdbaa3fab8bbcbc5a66ef0084d (diff) |
i965/gen10: Don't set Smooth Point Enable in 3DSTATE_SF if num_samples > 1
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/genX_state_upload.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c b/src/mesa/drivers/dri/i965/genX_state_upload.c index b7a6cd73619..ca081de2243 100644 --- a/src/mesa/drivers/dri/i965/genX_state_upload.c +++ b/src/mesa/drivers/dri/i965/genX_state_upload.c @@ -1626,6 +1626,16 @@ genX(upload_sf)(struct brw_context *brw) sf.SmoothPointEnable = true; #endif +#if GEN_GEN == 10 + /* _NEW_BUFFERS + * Smooth Point Enable bit MUST not be set when NUM_MULTISAMPLES > 1. + */ + const bool multisampled_fbo = + _mesa_geometric_samples(ctx->DrawBuffer) > 1; + if (multisampled_fbo) + sf.SmoothPointEnable = false; +#endif + #if GEN_IS_G4X || GEN_GEN >= 5 sf.AALineDistanceMode = AALINEDISTANCE_TRUE; #endif @@ -1681,7 +1691,8 @@ static const struct brw_tracked_state genX(sf_state) = { _NEW_POINT | _NEW_PROGRAM | (GEN_GEN >= 6 ? _NEW_MULTISAMPLE : 0) | - (GEN_GEN <= 7 ? _NEW_BUFFERS | _NEW_POLYGON : 0), + (GEN_GEN <= 7 ? _NEW_BUFFERS | _NEW_POLYGON : 0) | + (GEN_GEN == 10 ? _NEW_BUFFERS : 0), .brw = BRW_NEW_BLORP | BRW_NEW_VUE_MAP_GEOM_OUT | (GEN_GEN <= 5 ? BRW_NEW_BATCH | |