diff options
author | Marek Olšák <[email protected]> | 2012-06-17 17:54:38 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-06-17 18:28:32 +0200 |
commit | 6e7756db14c362ede6fdc97454267a32b8eab1d4 (patch) | |
tree | 6978ebe61253e66c5903ab0dc7f6a2d1f8c08ec9 /src/gallium/drivers/r600/r600_state.c | |
parent | 7c3786d780e1c475b219c3f2ddbe33554177be02 (diff) |
r600g: enable streamout by default on r7xx and DRM 2.17.0
Now that it's in Linus's tree.
Has anyone had a chance to test streamout on Cayman recently?
Diffstat (limited to 'src/gallium/drivers/r600/r600_state.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_state.c b/src/gallium/drivers/r600/r600_state.c index 124eba29731..fc757812a86 100644 --- a/src/gallium/drivers/r600/r600_state.c +++ b/src/gallium/drivers/r600/r600_state.c @@ -2215,7 +2215,7 @@ void r600_init_atom_start_cs(struct r600_context *rctx) r600_store_context_reg(cb, R_0288A4_SQ_PGM_RESOURCES_FS, 0); r600_store_context_reg(cb, R_0288DC_SQ_PGM_CF_OFFSET_FS, 0); - if (rctx->chip_class == R700 && rctx->screen->info.r600_has_streamout) + if (rctx->chip_class == R700 && rctx->screen->has_streamout) r600_store_context_reg(cb, R_028354_SX_SURFACE_SYNC, S_028354_SURFACE_SYNC_MASK(0xf)); r600_store_context_reg(cb, R_028800_DB_DEPTH_CONTROL, 0); |