summaryrefslogtreecommitdiff
path: root/src/mesa/main/hash.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-03-21 22:20:42 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-03-21 22:20:42 +0000
commit9b8094a663f08b50f01e3bcce8d22e4415b253e4 (patch)
tree0f9b2bcfc7d644f2553a13808d91557910cb9af2 /src/mesa/main/hash.h
parent832179c50e2cf5de9735241e4767aea4d6fc33bf (diff)
removed a few const keywords because of mutex calls
Diffstat (limited to 'src/mesa/main/hash.h')
-rw-r--r--src/mesa/main/hash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/hash.h b/src/mesa/main/hash.h
index 32adf52dd5..90659c81b4 100644
--- a/src/mesa/main/hash.h
+++ b/src/mesa/main/hash.h
@@ -1,4 +1,4 @@
-/* $Id: hash.h,v 1.3 2000/01/24 16:19:54 brianp Exp $ */
+/* $Id: hash.h,v 1.4 2000/03/21 22:20:42 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -46,11 +46,11 @@ extern void _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *da
extern void _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key);
-extern GLuint _mesa_HashFirstEntry(const struct _mesa_HashTable *table);
+extern GLuint _mesa_HashFirstEntry(struct _mesa_HashTable *table);
extern void _mesa_HashPrint(const struct _mesa_HashTable *table);
-extern GLuint _mesa_HashFindFreeKeyBlock(const struct _mesa_HashTable *table, GLuint numKeys);
+extern GLuint _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys);
#endif