1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00
freebsd-ports/graphics/p5-OpenGL/files/patch-gl_util.c
Dejan Lesjak 4b6e2f97a3 After a bit of discussion with CPAN maintainer of this module, make it
compile with Mesa 6, but in a way that hopefully doesn't break with
older GL.

Pointed out by:	dosirak via kris
2004-12-17 19:34:05 +00:00

25 lines
488 B
C

--- gl_util.c.orig Wed Jun 20 09:03:02 2001
+++ gl_util.c Tue Dec 14 18:41:08 2004
@@ -1,5 +1,8 @@
#include "gl_util.h"
+#if defined(HAVE_GLEXT_H) && !defined(GL_BLEND_EQUATION_EXT)
+#include <GL/glext.h>
+#endif
int gl_texparameter_count(GLenum pname)
{
@@ -708,6 +711,12 @@
/* 18 */
#ifdef GL_EXT_cmyka
+# ifndef GL_CMYK
+# define GL_CMYK GL_CMYK_EXT
+# endif
+# ifndef GL_CMYKA
+# define GL_CMYKA GL_CMYKA_EXT
+# endif
case GL_CMYK:
n = 4; break;
case GL_CMYKA: