diff options
Diffstat (limited to 'src/mesa/shader/hash_table.h')
-rw-r--r-- | src/mesa/shader/hash_table.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/shader/hash_table.h b/src/mesa/shader/hash_table.h index 83ae7f07c78..7b302f5dbee 100644 --- a/src/mesa/shader/hash_table.h +++ b/src/mesa/shader/hash_table.h @@ -54,6 +54,15 @@ extern struct hash_table *hash_table_ctor(unsigned num_buckets, /** + * Release all memory associated with a hash table + * + * \warning + * This function cannot release memory occupied either by keys or data. + */ +extern void hash_table_dtor(struct hash_table *ht); + + +/** * Flush all entries from a hash table * * \param ht Table to be cleared of its entries. |