Changeset 3597 for trunk/src/opengl/mesa/hash.h
- Timestamp:
- May 23, 2000, 10:35:01 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/hash.h
r2938 r3597 1 /* $Id: hash.h,v 1. 1 2000-02-29 00:48:31 sandervlExp $ */1 /* $Id: hash.h,v 1.2 2000-05-23 20:34:51 jeroen Exp $ */ 2 2 3 3 /* 4 4 * Mesa 3-D graphics library 5 * Version: 3. 15 * Version: 3.3 6 6 * 7 7 * Copyright (C) 1999 Brian Paul All Rights Reserved. … … 26 26 27 27 28 29 30 31 28 #ifndef HASH_H 32 29 #define HASH_H 33 30 34 31 35 #include "gl .h"32 #include "glheader.h" 36 33 37 34 … … 40 37 41 38 42 extern struct HashTable *NewHashTable(void);39 extern struct _mesa_HashTable *_mesa_NewHashTable(void); 43 40 44 extern void DeleteHashTable(structHashTable *table);41 extern void _mesa_DeleteHashTable(struct _mesa_HashTable *table); 45 42 46 extern void * HashLookup(const structHashTable *table, GLuint key);43 extern void *_mesa_HashLookup(const struct _mesa_HashTable *table, GLuint key); 47 44 48 extern void HashInsert(structHashTable *table, GLuint key, void *data);45 extern void _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data); 49 46 50 extern void HashRemove(structHashTable *table, GLuint key);47 extern void _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key); 51 48 52 extern GLuint HashFirstEntry(const structHashTable *table);49 extern GLuint _mesa_HashFirstEntry(struct _mesa_HashTable *table); 53 50 54 extern void HashPrint(const structHashTable *table);51 extern void _mesa_HashPrint(const struct _mesa_HashTable *table); 55 52 56 extern GLuint HashFindFreeKeyBlock(const structHashTable *table, GLuint numKeys);53 extern GLuint _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys); 57 54 58 55
Note:
See TracChangeset
for help on using the changeset viewer.