summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/imports.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main/imports.c')
-rw-r--r--src/mesa/main/imports.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c
index 808b8f67302..de4dd0e33d5 100644
--- a/src/mesa/main/imports.c
+++ b/src/mesa/main/imports.c
@@ -252,28 +252,6 @@ _mesa_bitcount_64(uint64_t n)
/*@}*/
-/**********************************************************************/
-/** \name String */
-/*@{*/
-
-
-/** Compute simple checksum/hash for a string */
-unsigned int
-_mesa_str_checksum(const char *str)
-{
- /* This could probably be much better */
- unsigned int sum, i;
- const char *c;
- sum = i = 1;
- for (c = str; *c; c++, i++)
- sum += *c * (i % 100);
- return sum + i;
-}
-
-
-/*@}*/
-
-
/** Needed due to #ifdef's, above. */
int
_mesa_vsnprintf(char *str, size_t size, const char *fmt, va_list args)