Thx Kamil Hornicek tykef at atlas dot cz (irc nick : Pigglesworth)

testing Mesa3D 7.0.1 with all bugfix we have done, thanks to
all bugfix we can remove a smaller hack we did frist in glapi.c
Mesa3D 7.0.1 does not working in ReactOS with SSE support.
if we disable it, Quake 3 will work fine. 

svn path=/trunk/; revision=30415
This commit is contained in:
Magnus Olsen 2007-11-13 10:50:33 +00:00
parent 7fc70c0db0
commit 4c996c0670
2 changed files with 9 additions and 19 deletions

View file

@ -222,22 +222,4 @@ Index: drivers/windows/icd/mesa.def
_tnl_InvalidateState
- _tnl_MakeCurrent
_tnl_run_pipeline
Index: glapi/glapi.c
===================================================================
--- glapi/glapi.c (revision 30408)
+++ glapi/glapi.c (working copy)
@@ -876,14 +876,6 @@
struct _glapi_function * entry;
GLuint i;
-#ifdef MANGLE
- if (funcName[0] != 'm' || funcName[1] != 'g' || funcName[2] != 'l')
- return NULL;
-#else
- if (funcName[0] != 'g' || funcName[1] != 'l')
- return NULL;
-#endif
-
/* search extension functions first */
for (i = 0; i < NumExtEntryPoints; i++) {
if (strcmp(ExtEntryTable[i].name, funcName) == 0) {

View file

@ -876,6 +876,14 @@ _glapi_get_proc_address(const char *funcName)
struct _glapi_function * entry;
GLuint i;
#ifdef MANGLE
if (funcName[0] != 'm' || funcName[1] != 'g' || funcName[2] != 'l')
return NULL;
-#else
if (funcName[0] != 'g' || funcName[1] != 'l')
return NULL;
#endif
/* search extension functions first */
for (i = 0; i < NumExtEntryPoints; i++) {
if (strcmp(ExtEntryTable[i].name, funcName) == 0) {