diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-17 16:29:17 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-17 16:29:17 +0000 |
commit | 944ea204a8784789249d6fdd70c318380140a422 (patch) | |
tree | 662df3f9ec7e074d8c4bc5834656a7fae00778ae /src | |
parent | 10d343f407bddf011be3d2b79a6541815759785a (diff) |
s/functionOffset/offset/
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/glapi/glapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/glapi/glapi.c b/src/mesa/glapi/glapi.c index acfd6181f2..8649a5241d 100644 --- a/src/mesa/glapi/glapi.c +++ b/src/mesa/glapi/glapi.c @@ -1,4 +1,4 @@ -/* $Id: glapi.c,v 1.65 2002/10/11 17:41:04 brianp Exp $ */ +/* $Id: glapi.c,v 1.66 2002/10/17 16:29:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -638,7 +638,7 @@ fill_in_entrypoint_offset(void *entrypoint, GLuint offset) __glapi_sparc_icache_flush(&code[6]); #else /* __sparc_v9__ */ code[2] = 0xc6006000; /* ld [%g1 + %lo(4*glapioffset)], %g3 */ - code[2] |= (functionOffset * 4); + code[2] |= (offset * 4); __glapi_sparc_icache_flush(&code[2]); #endif /* __sparc_v9__ */ |