From 1251d44aecf17dedd8a3a04f5429422d95846029 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 14 Dec 2013 15:55:57 +0100 Subject: [PATCH] Use "" instead of <> for inter-project includes. --- src/OpenGL.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/OpenGL.h b/src/OpenGL.h index 534cc43d2..796f1ad42 100644 --- a/src/OpenGL.h +++ b/src/OpenGL.h @@ -33,7 +33,7 @@ /* Desktop OpenGL */ #ifndef MAGNUM_TARGET_GLES - #include + #include "OpenGL/GL/gl_magnum.h" /* NaCl has its own gl2.h, the official one causes linker issues. Additionaly to NaCl's gl2ext.h we are including our own to prevent undeclared symbol @@ -45,19 +45,19 @@ #include #include #undef __gl2ext_h_ - #include + #include "OpenGL/GLES2/gl2ext.h" /* Generic OpenGL ES */ #else - #include + #include "OpenGL/KHR/khrplatform.h" #ifndef MAGNUM_TARGET_GLES2 - #include - #include + #include "OpenGL/GLES3/gl3platform.h" + #include "OpenGL/GLES3/gl3.h" #else - #include - #include + #include "OpenGL/GLES2/gl2platform.h" + #include "OpenGL/GLES2/gl2.h" #endif - #include + #include "OpenGL/GLES2/gl2ext.h" #endif #endif