util: move fnv1a hash implementation into its own header
[mesa.git] / src / util / hash_table.c
index 58e6fc2d91691a3cafb07b0201cb1771db6478d8..9d98270886867e088b369fe691d53f46a104653c 100644 (file)
@@ -546,15 +546,6 @@ _mesa_hash_table_random_entry(struct hash_table *ht,
 }
 
 
-/**
- * Quick FNV-1a hash implementation based on:
- * http://www.isthe.com/chongo/tech/comp/fnv/
- *
- * FNV-1a is not be the best hash out there -- Jenkins's lookup3 is supposed
- * to be quite good, and it probably beats FNV.  But FNV has the advantage
- * that it involves almost no code.  For an improvement on both, see Paul
- * Hsieh's http://www.azillionmonkeys.com/qed/hash.html
- */
 uint32_t
 _mesa_hash_data(const void *data, size_t size)
 {