Browse Source

winsys/radeon: bump the size of relocation hashlist

This should reduce the number of hash collisions in ETQW.
tags/mesa-9.1-rc1
Marek Olšák 13 years ago
parent
commit
844d14ebee
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/gallium/winsys/radeon/drm/radeon_drm_cs.h

+ 2
- 2
src/gallium/winsys/radeon/drm/radeon_drm_cs.h View File

@@ -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…
Cancel
Save