diff options
author | Alex Deucher <[email protected]> | 2009-08-23 16:06:31 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2009-08-23 16:06:31 -0400 |
commit | becb50f84dc94f643dc480d6a2256518f1a5a854 (patch) | |
tree | 0f492a73e0f145a10367ef769042542eef59ed97 /src/mesa/drivers/dri | |
parent | 670bd47df9f76b8e78c266b71d26a2a3968080ec (diff) |
r600: bump reloc_chunk size
This fixes openarena reloc errors. This needs to be
made more dynamic.
Diffstat (limited to 'src/mesa/drivers/dri')
-rw-r--r-- | src/mesa/drivers/dri/r600/r600_cmdbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r600/r600_cmdbuf.c b/src/mesa/drivers/dri/r600/r600_cmdbuf.c index 38814b6d71e..10ea7668963 100644 --- a/src/mesa/drivers/dri/r600/r600_cmdbuf.c +++ b/src/mesa/drivers/dri/r600/r600_cmdbuf.c @@ -322,7 +322,7 @@ static int r600_cs_emit(struct radeon_cs *cs) struct drm_radeon_cs_chunk cs_chunk[2]; uint32_t length_dw_reloc_chunk; uint64_t chunk_ptrs[2]; - uint32_t reloc_chunk[128]; + uint32_t reloc_chunk[256]; int r; int retry = 0; |