52 lines
1.0 KiB
C
52 lines
1.0 KiB
C
// Copyright (c) 2021 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#pragma once
|
|
|
|
// Settings
|
|
#include "config.h"
|
|
|
|
// Static Libs
|
|
#include <cglm/cglm.h>
|
|
|
|
#if SETTING_USE_GLAD == 1
|
|
#include <glad/glad.h>
|
|
#endif
|
|
|
|
#if SETTING_PLATFORM == SETTING_PLATFORM_GLFW
|
|
#elif SETTING_PLATFORM == SETTING_PLATFORM_SDL
|
|
#include <SDL2/SDL.h>
|
|
#include <SDL2/SDL_opengl.h>
|
|
#include <SDL2/SDL_opengles2.h>
|
|
#elif SETTING_PLATFORM == SETTING_PLATFORM_GBM
|
|
#include <xf86drm.h>
|
|
#include <xf86drmMode.h>
|
|
#include <gbm.h>
|
|
|
|
#define GL_GLEXT_PROTOTYPES 1
|
|
#include <GLES2/gl2.h>
|
|
#include <GLES2/gl2ext.h>
|
|
#include <EGL/egl.h>
|
|
#include <EGL/eglext.h>
|
|
#endif
|
|
|
|
#include <stb_image.h>
|
|
#include <stb_truetype.h>
|
|
|
|
// Standard Libs
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <malloc.h>
|
|
#include <string.h>
|
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
// Windows Fixes
|
|
# define strtok_r strtok_s
|
|
# define sleep(n) _sleep(n)
|
|
#else
|
|
#include <unistd.h>
|
|
#include <math.h>
|
|
#endif |