diff options
author | Marek Olšák <[email protected]> | 2020-02-05 14:47:36 -0500 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-02-26 20:35:50 +0000 |
commit | 502840855acac744fbc8dd090d931adc07755ead (patch) | |
tree | 344d4a18125d8ff985fd625e20e6958423ee62af /src/gallium/drivers/v3d | |
parent | 10d235a84319ed4137fe0c6d22d8bb9a52d3174a (diff) |
gallium/hash_table: turn it into a wrapper around util/hash_table
Reviewed-by: Kristian H. Kristensen <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3722>
Diffstat (limited to 'src/gallium/drivers/v3d')
-rw-r--r-- | src/gallium/drivers/v3d/v3d_screen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/v3d/v3d_screen.h b/src/gallium/drivers/v3d/v3d_screen.h index db2138d20be..f9ff26f18f8 100644 --- a/src/gallium/drivers/v3d/v3d_screen.h +++ b/src/gallium/drivers/v3d/v3d_screen.h @@ -71,7 +71,7 @@ struct v3d_screen { const struct v3d_compiler *compiler; - struct util_hash_table *bo_handles; + struct hash_table *bo_handles; mtx_t bo_handles_mutex; uint32_t bo_size; |