mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 04:30:10 +01:00
intel: Increase max relocs per batchbuffer
This commit is contained in:
parent
a3b7db0326
commit
cc9fbb16a6
1 changed files with 1 additions and 2 deletions
|
|
@ -21,7 +21,7 @@ intel_be_batchbuffer_alloc(struct intel_be_context *intel)
|
|||
batch->base.size = 0;
|
||||
batch->base.actual_size = intel->device->max_batch_size;
|
||||
batch->base.relocs = 0;
|
||||
batch->base.max_relocs = INTEL_DEFAULT_RELOCS;
|
||||
batch->base.max_relocs = 500;/*INTEL_DEFAULT_RELOCS;*/
|
||||
|
||||
batch->base.map = malloc(batch->base.actual_size);
|
||||
memset(batch->base.map, 0, batch->base.actual_size);
|
||||
|
|
@ -47,7 +47,6 @@ intel_be_batchbuffer_reset(struct intel_be_batchbuffer *batch)
|
|||
batch->base.size = batch->base.actual_size - BATCH_RESERVED;
|
||||
|
||||
batch->base.relocs = 0;
|
||||
batch->base.max_relocs = INTEL_DEFAULT_RELOCS;
|
||||
|
||||
batch->bo = drm_intel_bo_alloc(dev->pools.gem,
|
||||
"gallium3d_batch_buffer",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue