projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb79790
)
replaced HashLookup() with _mesa_HashLookup()
author
Brian Paul
<brian.paul@tungstengraphics.com>
Mon, 24 Jan 2000 20:53:32 +0000
(20:53 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Mon, 24 Jan 2000 20:53:32 +0000
(20:53 +0000)
src/mesa/main/texobj.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/texobj.c
b/src/mesa/main/texobj.c
index a7e6e34b8b478c9dbcb4e4a7a71a51172e7b022f..471ed75b1432e0266bf32a6d119e7dd039b9dab0 100644
(file)
--- a/
src/mesa/main/texobj.c
+++ b/
src/mesa/main/texobj.c
@@
-1,4
+1,4
@@
-/* $Id: texobj.c,v 1.1
1 2000/01/24 16:19:55
brianp Exp $ */
+/* $Id: texobj.c,v 1.1
2 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);