summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-01-24 20:53:32 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-01-24 20:53:32 +0000
commitc79fab4aa6d4c2d399c2ca888fdf0e6c310f7303 (patch)
treeae00bb70b6582f9f7c56ac6407f76aab861f4b73 /src/mesa/main
parentbb79790662f56eb71aafd3f020cd86ad810f56b2 (diff)
replaced HashLookup() with _mesa_HashLookup()
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/texobj.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c
index a7e6e34b8b..471ed75b14 100644
--- a/src/mesa/main/texobj.c
+++ b/src/mesa/main/texobj.c
@@ -1,4 +1,4 @@
-/* $Id: texobj.c,v 1.11 2000/01/24 16:19:55 brianp Exp $ */
+/* $Id: texobj.c,v 1.12 2000/01/24 20:53:32 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -444,7 +444,7 @@ _mesa_BindTexture( GLenum target, GLuint texName )
newTexObj = ctx->Shared->DefaultD[dim];
else {
struct _mesa_HashTable *hash = ctx->Shared->TexObjects;
- newTexObj = (struct gl_texture_object *) HashLookup(hash, texName);
+ newTexObj = (struct gl_texture_object *) _mesa_HashLookup(hash, texName);
if (!newTexObj)
newTexObj = gl_alloc_texture_object(ctx->Shared, texName, dim);