summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/cso_cache/cso_hash.h
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-22 17:22:32 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-23 00:51:33 +0900
commit6c597238b2e168b63738ac8cc9167c1d09185aad (patch)
tree7413113fc37c241a04b1703c90f3e27408643f6d /src/gallium/auxiliary/cso_cache/cso_hash.h
parent2cf860b866d80595b7287d6991dc96abc3ca8dd3 (diff)
gallium: Add cso convenience routine (from Keith's patch).
Diffstat (limited to 'src/gallium/auxiliary/cso_cache/cso_hash.h')
-rw-r--r--src/gallium/auxiliary/cso_cache/cso_hash.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_hash.h b/src/gallium/auxiliary/cso_cache/cso_hash.h
index b4aa111860..ffd99beba9 100644
--- a/src/gallium/auxiliary/cso_cache/cso_hash.h
+++ b/src/gallium/auxiliary/cso_cache/cso_hash.h
@@ -59,4 +59,13 @@ void *cso_hash_iter_data(struct cso_hash_iter iter);
struct cso_hash_iter cso_hash_iter_next(struct cso_hash_iter iter);
struct cso_hash_iter cso_hash_iter_prev(struct cso_hash_iter iter);
+
+/* KW: a convenience routine:
+ */
+void *cso_hash_find_data_from_template( struct cso_hash *hash,
+ unsigned hash_key,
+ void *templ,
+ int size );
+
+
#endif