summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2000-01-24 23:49:29 +0000
committerBrian Paul <[email protected]>2000-01-24 23:49:29 +0000
commit5e8aa8e5d9f02b2709f4f4b49e7bad1890603c73 (patch)
tree904a4c60813b24a4ebae6d1459bb7e941722aa79 /src/mesa/main
parentf008ed46d188326911f677fd4e319eab05e57518 (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 caffa274da6..cfcfe8034fc 100644
--- a/src/mesa/main/texobj.c
+++ b/src/mesa/main/texobj.c
@@ -1,4 +1,4 @@
-/* $Id: texobj.c,v 1.7.2.2 2000/01/24 16:20:17 brianp Exp $ */
+/* $Id: texobj.c,v 1.7.2.3 2000/01/24 23:49:29 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -447,7 +447,7 @@ void gl_BindTexture( GLcontext *ctx, 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);