diff options
author | Topi Pohjolainen <topi.pohjolainen@intel.com> | 2015-09-02 08:57:51 +0300 |
---|---|---|
committer | Topi Pohjolainen <topi.pohjolainen@intel.com> | 2015-09-02 08:57:51 +0300 |
commit | 8ac60cdc18f332162399dc72815ba0cf9ed3effe (patch) | |
tree | e20358a2010f4a0833ce73554272c0c47a1e05d2 | |
parent | 1336d01c53a3cb935aa9279b8709d2c4b0d15189 (diff) |
i965: Disable fast clears
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_clear.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_clear.c b/src/mesa/drivers/dri/i965/brw_clear.c index f981388ef1..68d6e0e1ba 100644 --- a/src/mesa/drivers/dri/i965/brw_clear.c +++ b/src/mesa/drivers/dri/i965/brw_clear.c @@ -243,7 +243,7 @@ brw_clear(struct gl_context *ctx, GLbitfield mask) } /* Clear color buffers with fast clear or at least rep16 writes. */ - if (brw->gen >= 6 && brw->gen < 9 && (mask & BUFFER_BITS_COLOR)) { + if (brw->gen >= 8 && brw->gen < 9 && (mask & BUFFER_BITS_COLOR)) { if (brw_meta_fast_clear(brw, fb, mask, partial_clear)) { debug_mask("blorp color", mask & BUFFER_BITS_COLOR); mask &= ~BUFFER_BITS_COLOR; |