diff options
author | Zack Rusin <zack@tungstengraphics.com> | 2008-04-23 14:00:13 -0400 |
---|---|---|
committer | Zack Rusin <zack@tungstengraphics.com> | 2008-04-23 14:01:08 -0400 |
commit | 5fcd84ab39318a371253b1a7285bc657fb82efed (patch) | |
tree | 10e858680172fd8dfadfed0228e18ac190a8a0fe /src/gallium/auxiliary/cso_cache/cso_hash.h | |
parent | ba47aabc9868b410cdfe3bc8b6d25a44a598cba2 (diff) |
Create a sharable translate_cache and use it.
Diffstat (limited to 'src/gallium/auxiliary/cso_cache/cso_hash.h')
-rw-r--r-- | src/gallium/auxiliary/cso_cache/cso_hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_hash.h b/src/gallium/auxiliary/cso_cache/cso_hash.h index 73c4742006..85f3e276c6 100644 --- a/src/gallium/auxiliary/cso_cache/cso_hash.h +++ b/src/gallium/auxiliary/cso_cache/cso_hash.h @@ -106,12 +106,12 @@ struct cso_hash_iter cso_hash_iter_prev(struct cso_hash_iter iter); /** - * Convenience routine to iterate over the collision list while doing a memory + * Convenience routine to iterate over the collision list while doing a memory * comparison to see which entry in the list is a direct copy of our template * and returns that entry. */ void *cso_hash_find_data_from_template( struct cso_hash *hash, - unsigned hash_key, + unsigned hash_key, void *templ, int size ); |