diff options
-rw-r--r-- | pugl/pugl_osx.m | 5 | ||||
-rw-r--r-- | pugl_test.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m index e56a1a7..39be7f0 100644 --- a/pugl/pugl_osx.m +++ b/pugl/pugl_osx.m @@ -19,7 +19,8 @@ @file pugl_osx.m OSX/Cocoa Pugl Implementation. */ -#include "pugl/cairo_gl.h" +#define GL_SILENCE_DEPRECATION 1 + #include "pugl/gl.h" #include "pugl/pugl_internal.h" @@ -27,6 +28,8 @@ #include <stdlib.h> +#undef PUGL_HAVE_CAIRO + @class PuglOpenGLView; struct PuglInternalsImpl { diff --git a/pugl_test.c b/pugl_test.c index eaf95f8..0bc65d5 100644 --- a/pugl_test.c +++ b/pugl_test.c @@ -18,6 +18,8 @@ @file pugl_test.c A simple Pugl test that creates a top-level window. */ +#define GL_SILENCE_DEPRECATION 1 + #include "pugl/gl.h" #include "pugl/pugl.h" |