diff options
author | marha <marha@users.sourceforge.net> | 2009-11-23 15:23:16 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-11-23 15:23:16 +0000 |
commit | 699ed6596b3b351dbbd88c1c2ef00eb07af9c1ee (patch) | |
tree | fc332f4b5adc964e2f5a7a3b69db8c96204f046a /mesalib/src/mesa/glapi/glapi.c | |
parent | 29556eae54fc97f382b8d690dfc3a47a742800dc (diff) | |
download | vcxsrv-699ed6596b3b351dbbd88c1c2ef00eb07af9c1ee.tar.gz vcxsrv-699ed6596b3b351dbbd88c1c2ef00eb07af9c1ee.tar.bz2 vcxsrv-699ed6596b3b351dbbd88c1c2ef00eb07af9c1ee.zip |
- Solved problems when running opengl with indirect rendering (export LIBGL_ALWAYS_INDIRECT=1)
- removed mesaopengl32.dll (not needed anymore)
Diffstat (limited to 'mesalib/src/mesa/glapi/glapi.c')
-rw-r--r-- | mesalib/src/mesa/glapi/glapi.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mesalib/src/mesa/glapi/glapi.c b/mesalib/src/mesa/glapi/glapi.c index e36fccb35..216dede90 100644 --- a/mesalib/src/mesa/glapi/glapi.c +++ b/mesalib/src/mesa/glapi/glapi.c @@ -223,16 +223,18 @@ void FreeAllTSD(void) #endif /* defined(THREADS) */ +#ifndef INSERVER PUBLIC struct _glapi_table *_glapi_Dispatch = (struct _glapi_table *) __glapi_noop_table; PUBLIC void *_glapi_Context = NULL; +#endif #endif /* defined(GLX_USE_TLS) */ /*@}*/ - +#ifndef INSERVER /** * We should call this periodically from a function such as glXMakeCurrent * in order to test if multiple threads are being used. @@ -264,7 +266,7 @@ _glapi_check_multithread(void) CHECK_MULTITHREAD_UNLOCK(); #endif } - +#endif /** |