Yet another compilation fix on OSX

This commit is contained in:
bubnikv 2019-01-25 09:57:08 +01:00
parent ee87d73916
commit dbcf800353

View file

@ -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);