Files
panopainter/engine/pch.h
2017-01-27 14:55:16 +00:00

36 lines
749 B
C++

//#pragma once
#ifdef __APPLE__
#include <OpenGL/gl3.h>
#include <sys/stat.h>
#elif _WIN32
#define _USE_MATH_DEFINES
#define _CRT_SECURE_NO_WARNINGS
#include <windows.h>
#include <gl\glew.h>
#include <gl\wglew.h>
#include <gl\GL.h>
#endif
#ifdef __cplusplus
#include <map>
#include <cmath>
#include <stack>
#include <memory>
#include <string>
#include <vector>
#include <iostream>
#define GLM_FORCE_RADIANS
#define GLM_FORCE_SWIZZLE
//#define GLM_FORCE_MESSAGES
#define GLM_ENABLE_EXPERIMENTAL
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <glm/gtx/rotate_vector.hpp>
#include <glm/gtx/euler_angles.hpp>
#include <tinyxml2.h>
#include <yoga/Yoga.h>
#endif