summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_handle_table.h
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-03-18 12:46:24 +0000
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-03-18 17:20:56 +0000
commit527e30c53baadb396e5503e5188f0a9f1b2d2501 (patch)
tree07012ac7a9dff50b3bb8d9b405ae2c05d12c6774 /src/gallium/auxiliary/util/u_handle_table.h
parentd26139d6a19aaf8b4dbbaa1ee937fed2283923e4 (diff)
d3d: Allow to iterate over the handle table.
Diffstat (limited to 'src/gallium/auxiliary/util/u_handle_table.h')
-rw-r--r--src/gallium/auxiliary/util/u_handle_table.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_handle_table.h b/src/gallium/auxiliary/util/u_handle_table.h
index a2f1f604ad..d080135c9f 100644
--- a/src/gallium/auxiliary/util/u_handle_table.h
+++ b/src/gallium/auxiliary/util/u_handle_table.h
@@ -100,6 +100,15 @@ void
handle_table_destroy(struct handle_table *ht);
+unsigned
+handle_table_get_first_handle(struct handle_table *ht);
+
+
+unsigned
+handle_table_get_next_handle(struct handle_table *ht,
+ unsigned handle);
+
+
#ifdef __cplusplus
}
#endif