summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/radeonsi/si_state_viewport.c
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2018-10-18 18:01:00 -0400
committerMarek Olšák <marek.olsak@amd.com>2018-10-18 18:01:22 -0400
commit69a87b5d4709fd12f7f2449bc7294dd54a570edc (patch)
tree19e9636857392e75fc3efc165e286dba811fe3dd /src/gallium/drivers/radeonsi/si_state_viewport.c
parent2a26b1c0451c9eca16febf76a0881737325fda69 (diff)
radeonsi: fix a typo in a comment in emit_guardband
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_state_viewport.c')
-rw-r--r--src/gallium/drivers/radeonsi/si_state_viewport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state_viewport.c b/src/gallium/drivers/radeonsi/si_state_viewport.c
index 808eb366bde..76c56447eb0 100644
--- a/src/gallium/drivers/radeonsi/si_state_viewport.c
+++ b/src/gallium/drivers/radeonsi/si_state_viewport.c
@@ -187,7 +187,7 @@ static void si_emit_guardband(struct si_context *ctx)
hw_screen_offset_x = CLAMP(hw_screen_offset_x, 0, hw_screen_offset_max);
hw_screen_offset_y = CLAMP(hw_screen_offset_y, 0, hw_screen_offset_max);
- /* Align the screen offset by dropping the low 4 bits. */
+ /* Align the screen offset by dropping the low bits. */
hw_screen_offset_x &= ~(hw_screen_offset_alignment - 1);
hw_screen_offset_y &= ~(hw_screen_offset_alignment - 1);