mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 05:32:55 +00:00
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:
parent
7fc70c0db0
commit
4c996c0670
2 changed files with 9 additions and 19 deletions
|
@ -222,22 +222,4 @@ Index: drivers/windows/icd/mesa.def
|
||||||
_tnl_InvalidateState
|
_tnl_InvalidateState
|
||||||
- _tnl_MakeCurrent
|
- _tnl_MakeCurrent
|
||||||
_tnl_run_pipeline
|
_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) {
|
|
||||||
|
|
|
@ -876,6 +876,14 @@ _glapi_get_proc_address(const char *funcName)
|
||||||
struct _glapi_function * entry;
|
struct _glapi_function * entry;
|
||||||
GLuint i;
|
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 */
|
/* search extension functions first */
|
||||||
for (i = 0; i < NumExtEntryPoints; i++) {
|
for (i = 0; i < NumExtEntryPoints; i++) {
|
||||||
if (strcmp(ExtEntryTable[i].name, funcName) == 0) {
|
if (strcmp(ExtEntryTable[i].name, funcName) == 0) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue