summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_state.c
diff options
context:
space:
mode:
authorMichel Dänzer <daenzer@vmware.com>2009-12-05 17:48:00 +0100
committerMichel Dänzer <michel@daenzer.net>2009-12-05 17:59:49 +0100
commit56a4342a0493ad1d502d4791ab941ef171d36e60 (patch)
tree11b85592643a25e902404da955921fc3bede05ac /src/gallium/drivers/r300/r300_state.c
parent01537a84dfe65cd1512d6fbf71e975fad5639432 (diff)
r300g: Need to emit a hardware scissor rectangle even if scissor is disabled.
Just make it cover the whole framebuffer in that case. Otherwise the kernel CS checker may complain, e.g. running progs/demos/gearbox. That runs fast now here, but doesn't look right yet.
Diffstat (limited to 'src/gallium/drivers/r300/r300_state.c')
-rw-r--r--src/gallium/drivers/r300/r300_state.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_state.c b/src/gallium/drivers/r300/r300_state.c
index 442af70e14..2bc2b79c02 100644
--- a/src/gallium/drivers/r300/r300_state.c
+++ b/src/gallium/drivers/r300/r300_state.c
@@ -302,6 +302,25 @@ static void
r300->framebuffer_state = *state;
r300->dirty_state |= R300_NEW_FRAMEBUFFERS;
+
+ if (r300_screen(r300->context.screen)->caps->is_r500) {
+ r300->scissor_state->no_scissor_top_left =
+ (0 << R300_SCISSORS_X_SHIFT) |
+ (0 << R300_SCISSORS_Y_SHIFT);
+ r300->scissor_state->no_scissor_bottom_right =
+ ((state->width - 1) << R300_SCISSORS_X_SHIFT) |
+ ((state->height - 1) << R300_SCISSORS_Y_SHIFT);
+ } else {
+ /* Offset of 1440 in non-R500 chipsets. */
+ r300->scissor_state->no_scissor_top_left =
+ ((0 + 1440) << R300_SCISSORS_X_SHIFT) |
+ ((0 + 1440) << R300_SCISSORS_Y_SHIFT);
+ r300->scissor_state->no_scissor_bottom_right =
+ (((state->width - 1) + 1440) << R300_SCISSORS_X_SHIFT) |
+ (((state->height - 1) + 1440) << R300_SCISSORS_Y_SHIFT);
+ }
+
+ r300->dirty_state |= R300_NEW_SCISSOR;
}
/* Create fragment shader state. */