// // Lol Engine // // Copyright © 2010—2016 Sam Hocevar // // Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. // See http://www.wtfpl.net/ for more details. // #pragma once // // The GL support // -------------- // #define GL_GLEXT_PROTOTYPES /* Prefer GLES on browsers */ #if defined EMSCRIPTEN # undef HAVE_GL_2X #endif /* Only define one GL platform */ #if defined HAVE_GL_2X # undef HAVE_GLES_2X #endif /* Include GL development headers. * Do not include glew.h on OS X, because the version shipped with Fink * links with X11 whereas we want the system’s Cocoa-friendly GL libs. */ #if defined LOL_USE_GLEW && !defined __APPLE__ # include #elif defined HAVE_GL_2X # if defined __APPLE__ && defined __MACH__ && defined __arm__ # include # elif defined __APPLE__ && defined __MACH__ # define MACOS_OPENGL # define GL_GLEXT_PROTOTYPES # include # include # include # else # define GL_GLEXT_PROTOTYPES # include # endif #elif defined HAVE_GLES_2X # if defined __APPLE__ && defined __MACH__ # include # include # else # include # include # endif #endif #define LOL_CHECK_GLERROR() \ { \ GLenum error = glGetError(); \ ASSERT(error == GL_NO_ERROR, "OpenGL error: 0x%04x\n", error); \ }