replaced HashLookup() with _mesa_HashLookup()

This commit is contained in:
Brian Paul
2000-01-24 20:53:32 +00:00
parent bb79790662
commit c79fab4aa6

View File

@@ -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 * Mesa 3-D graphics library
@@ -444,7 +444,7 @@ _mesa_BindTexture( GLenum target, GLuint texName )
newTexObj = ctx->Shared->DefaultD[dim]; newTexObj = ctx->Shared->DefaultD[dim];
else { else {
struct _mesa_HashTable *hash = ctx->Shared->TexObjects; 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) if (!newTexObj)
newTexObj = gl_alloc_texture_object(ctx->Shared, texName, dim); newTexObj = gl_alloc_texture_object(ctx->Shared, texName, dim);