summaryrefslogtreecommitdiffstats
path: root/src/util/set.h
diff options
context:
space:
mode:
authorCaio Marcelo de Oliveira Filho <[email protected]>2018-06-25 13:42:22 -0700
committerRafael Antognolli <[email protected]>2018-07-12 14:03:51 -0700
commitfa0c19d17b9b6308fdca01f609c167b3ea1e68ae (patch)
treef75e9e33e5ccc8766053931cc361d58c948abdf4 /src/util/set.h
parentb034facfbc446b28f2cc92c32122849a25fb1001 (diff)
util/set: helper to remove entry by key
v2: Add unit test. (Eric Anholt) Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/util/set.h')
-rw-r--r--src/util/set.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/set.h b/src/util/set.h
index 4db070a6f10..ffd19a798bd 100644
--- a/src/util/set.h
+++ b/src/util/set.h
@@ -81,6 +81,8 @@ _mesa_set_search_pre_hashed(const struct set *set, uint32_t hash,
void
_mesa_set_remove(struct set *set, struct set_entry *entry);
+void
+_mesa_set_remove_key(struct set *set, const void *key);
struct set_entry *
_mesa_set_next_entry(const struct set *set, struct set_entry *entry);