projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ecfa382
)
changed a GLuint to GLint
author
Brian Paul
<brian.paul@tungstengraphics.com>
Wed, 23 Feb 2000 16:01:40 +0000
(16:01 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Wed, 23 Feb 2000 16:01:40 +0000
(16:01 +0000)
src/mesa/glapi/glapi.c
patch
|
blob
|
history
diff --git
a/src/mesa/glapi/glapi.c
b/src/mesa/glapi/glapi.c
index 89cceddc77ba485e9c2beacd70ec3d83f7f10d54..3ae7379e69a35b59e9e68328c1da56ad423051c6 100644
(file)
--- a/
src/mesa/glapi/glapi.c
+++ b/
src/mesa/glapi/glapi.c
@@
-1,4
+1,4
@@
-/* $Id: glapi.c,v 1.3
5 2000/02/12 21:08:0
0 brianp Exp $ */
+/* $Id: glapi.c,v 1.3
6 2000/02/23 16:01:4
0 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@
-256,7
+256,7
@@
get_static_proc_offset(const char *funcName)
static GLvoid *
get_static_proc_address(const char *funcName)
{
- GL
u
int i = get_static_proc_offset(funcName);
+ GLint i = get_static_proc_offset(funcName);
if (i >= 0)
return static_functions[i].Address;
else