Yet another compilation fix on OSX
This commit is contained in:
parent
ee87d73916
commit
dbcf800353
1 changed files with 5 additions and 1 deletions
|
@ -6558,7 +6558,11 @@ public:
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
typedef void (__stdcall *_GLUfuncptr)(void);
|
typedef void (__stdcall *_GLUfuncptr)(void);
|
||||||
#else /* _MSC_VER */
|
#else /* _MSC_VER */
|
||||||
typedef void (GLAPIENTRYP _GLUfuncptr)(void);
|
#ifdef GLAPIENTRYP
|
||||||
|
typedef void (GLAPIENTRYP _GLUfuncptr)(void);
|
||||||
|
#else /* GLAPIENTRYP */
|
||||||
|
typedef void (*_GLUfuncptr)(void);
|
||||||
|
#endif
|
||||||
#endif /* _MSC_VER */
|
#endif /* _MSC_VER */
|
||||||
#endif /* _GLUfuncptr */
|
#endif /* _GLUfuncptr */
|
||||||
gluTessCallback(tess, GLU_TESS_BEGIN, (_GLUfuncptr)tessBeginCB);
|
gluTessCallback(tess, GLU_TESS_BEGIN, (_GLUfuncptr)tessBeginCB);
|
||||||
|
|
Loading…
Add table
Reference in a new issue