/* * Copyright (c), Recep Aslantas. * * MIT License (MIT), http://opensource.org/licenses/MIT * Full license can be found in the LICENSE file */ #ifndef cglm_platform_h #define cglm_platform_h #ifdef __APPLE__ # include #else # ifdef _WIN32 # include # endif # include #endif #ifdef _WIN32 extern void glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); #endif #endif /* cglm_platform_h */