diff options
author | Marek Olšák <[email protected]> | 2018-09-28 20:57:07 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-10-16 15:28:22 -0400 |
commit | 4fd8d2df9c65396319619fa0784378600fc834d0 (patch) | |
tree | 32d0f18240387d6abac9e91fa63e1cbd4a48d809 /src/gallium/drivers/radeonsi/si_state.h | |
parent | 41a6c3de1fb4b955217b0f53b3f301d236acebb3 (diff) |
radeonsi: move emission of PA_SU_VTX_CNTL into emit_guardband
We'll modify the quant mode there, which also affects the guarband
computation.
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_state.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.h b/src/gallium/drivers/radeonsi/si_state.h index c3b56ff12f8..16fd223d00a 100644 --- a/src/gallium/drivers/radeonsi/si_state.h +++ b/src/gallium/drivers/radeonsi/si_state.h @@ -71,6 +71,7 @@ struct si_state_rasterizer { float max_point_size; unsigned sprite_coord_enable:8; unsigned clip_plane_enable:8; + unsigned half_pixel_center:1; unsigned flatshade:1; unsigned two_side:1; unsigned multisample_enable:1; @@ -277,6 +278,7 @@ enum si_tracked_reg { SI_TRACKED_PA_CL_GB_HORZ_DISC_ADJ, SI_TRACKED_PA_SU_HARDWARE_SCREEN_OFFSET, + SI_TRACKED_PA_SU_VTX_CNTL, SI_TRACKED_PA_SC_CLIPRECT_RULE, |