mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
winsys/radeon: bump the size of relocation hashlist
This should reduce the number of hash collisions in ETQW.
This commit is contained in:
parent
18f3f7b958
commit
844d14ebee
1 changed files with 2 additions and 2 deletions
|
|
@ -47,8 +47,8 @@ struct radeon_cs_context {
|
|||
struct drm_radeon_cs_reloc *relocs;
|
||||
|
||||
/* 0 = BO not added, 1 = BO added */
|
||||
char is_handle_added[256];
|
||||
unsigned reloc_indices_hashlist[256];
|
||||
char is_handle_added[512];
|
||||
unsigned reloc_indices_hashlist[512];
|
||||
|
||||
unsigned used_vram;
|
||||
unsigned used_gart;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue