projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e77737
)
fixed non-threaded codepath
author
Daniel Borca
<dborca@users.sourceforge.net>
Mon, 5 Jul 2004 06:15:37 +0000
(06:15 +0000)
committer
Daniel Borca
<dborca@users.sourceforge.net>
Mon, 5 Jul 2004 06:15:37 +0000
(06:15 +0000)
src/mesa/glapi/glapi.c
patch
|
blob
|
history
diff --git
a/src/mesa/glapi/glapi.c
b/src/mesa/glapi/glapi.c
index
1f640e3
..
4c005a9
100644
(file)
--- a/
src/mesa/glapi/glapi.c
+++ b/
src/mesa/glapi/glapi.c
@@
-628,7
+628,11
@@
generate_entrypoint(GLuint functionOffset)
if (code) {
memcpy(code, insn_template, sizeof(insn_template));
+#if defined( THREADS )
*(unsigned int *)(code + 0x01) = (unsigned int)&_glapi_DispatchTSD;
+#else
+ *(unsigned int *)(code + 0x01) = (unsigned int)&_glapi_Dispatch;
+#endif
*(unsigned int *)(code + 0x0b) = (unsigned int)functionOffset * 4;
next_insn = (unsigned int)(code + 0x14);
*(unsigned int *)(code + 0x10) = (unsigned int)_glapi_get_dispatch - next_insn;