mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: Compilation under Linux
This commit is contained in:
parent
3d693f4ec6
commit
8c01cfc3ae
3 changed files with 8 additions and 8 deletions
|
@ -455,7 +455,7 @@ PFNWGLGETEXTENSIONSSTRINGARBPROC nwglGetExtensionsStringARB;
|
||||||
#elif defined(NL_OS_MAC)
|
#elif defined(NL_OS_MAC)
|
||||||
#elif defined(NL_OS_UNIX)
|
#elif defined(NL_OS_UNIX)
|
||||||
|
|
||||||
NEL_PFNGLXLALLOCATEMEMORYNVPROC nglXAllocateMemoryNV;
|
NEL_PFNGLXALLOCATEMEMORYNVPROC nglXAllocateMemoryNV;
|
||||||
NEL_PFNGLXFREEMEMORYNVPROC nglXFreeMemoryNV;
|
NEL_PFNGLXFREEMEMORYNVPROC nglXFreeMemoryNV;
|
||||||
|
|
||||||
// Swap control extensions
|
// Swap control extensions
|
||||||
|
@ -591,7 +591,7 @@ static bool setupNVVertexArrayRange(const char *glext)
|
||||||
CHECK_ADDRESS(PFNWGLALLOCATEMEMORYNVPROC, wglAllocateMemoryNV);
|
CHECK_ADDRESS(PFNWGLALLOCATEMEMORYNVPROC, wglAllocateMemoryNV);
|
||||||
CHECK_ADDRESS(PFNWGLFREEMEMORYNVPROC, wglFreeMemoryNV);
|
CHECK_ADDRESS(PFNWGLFREEMEMORYNVPROC, wglFreeMemoryNV);
|
||||||
#elif defined(NL_OS_UNIX) && !defined(NL_OS_MAC)
|
#elif defined(NL_OS_UNIX) && !defined(NL_OS_MAC)
|
||||||
CHECK_ADDRESS(NEL_PFNGLXLALLOCATEMEMORYNVPROC, glXAllocateMemoryNV);
|
CHECK_ADDRESS(NEL_PFNGLXALLOCATEMEMORYNVPROC, glXAllocateMemoryNV);
|
||||||
CHECK_ADDRESS(NEL_PFNGLXFREEMEMORYNVPROC, glXFreeMemoryNV);
|
CHECK_ADDRESS(NEL_PFNGLXFREEMEMORYNVPROC, glXFreeMemoryNV);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -346,7 +346,7 @@ extern NEL_PFNGLVERTEXARRAYRANGENVPROC nglVertexArrayRangeNV;
|
||||||
extern PFNWGLALLOCATEMEMORYNVPROC nwglAllocateMemoryNV;
|
extern PFNWGLALLOCATEMEMORYNVPROC nwglAllocateMemoryNV;
|
||||||
extern PFNWGLFREEMEMORYNVPROC nwglFreeMemoryNV;
|
extern PFNWGLFREEMEMORYNVPROC nwglFreeMemoryNV;
|
||||||
#elif defined(NL_OS_UNIX) && !defined(NL_OS_MAC)
|
#elif defined(NL_OS_UNIX) && !defined(NL_OS_MAC)
|
||||||
extern NEL_PFNGLXLALLOCATEMEMORYNVPROC nglXAllocateMemoryNV;
|
extern NEL_PFNGLXALLOCATEMEMORYNVPROC nglXAllocateMemoryNV;
|
||||||
extern NEL_PFNGLXFREEMEMORYNVPROC nglXFreeMemoryNV;
|
extern NEL_PFNGLXFREEMEMORYNVPROC nglXFreeMemoryNV;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -403,11 +403,11 @@ typedef GLint (APIENTRY * NEL_PFNGLXGETSWAPINTERVALMESAPROC) ();
|
||||||
|
|
||||||
#endif // NL_GLX_MESA_swap_control
|
#endif // NL_GLX_MESA_swap_control
|
||||||
|
|
||||||
#ifndef NL_GLX_NV_vertex_array_range
|
#ifndef NL_GLX_NV_vertex_array_range
|
||||||
#define NL_GLX_NV_vertex_array_range 1
|
#define NL_GLX_NV_vertex_array_range 1
|
||||||
typedef void* (APIENTRY * NEL_PFNGLXALLOCATEMEMORYNVPROC) (GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority);
|
typedef void* (APIENTRY * NEL_PFNGLXALLOCATEMEMORYNVPROC) (GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority);
|
||||||
typedef void (APIENTRY * NEL_PFNGLXFREEMEMORYNVPROC) (void *pointer);
|
typedef void (APIENTRY * NEL_PFNGLXFREEMEMORYNVPROC) (void *pointer);
|
||||||
#endif // NL_GLX_NV_vertex_array_range
|
#endif // NL_GLX_NV_vertex_array_range
|
||||||
|
|
||||||
#endif // NL_OS_MAC
|
#endif // NL_OS_MAC
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue