mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 03:43:52 +00:00
Yet another compilation fix on OSX
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user