2013-01-19 20:02:34 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#define NOMINMAX 1
|
|
|
|
#include "windows.h"
|
|
|
|
#undef NOMINMAX
|
|
|
|
#include "gl/gl.h"
|
|
|
|
#include "gl/glu.h"
|
2017-01-19 23:59:45 +00:00
|
|
|
#include "windows/gl/glext.h"
|
2013-01-19 20:02:34 +00:00
|
|
|
|
|
|
|
namespace SE
|
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
Here goes all functions that are platform-specific
|
|
|
|
When I make iOS/Mac/Linux port, I will make same API pair h/cpp
|
|
|
|
*/
|
|
|
|
|
2013-02-20 05:10:38 +00:00
|
|
|
//Not in use, wow
|
|
|
|
/*
|
2013-01-19 20:02:34 +00:00
|
|
|
void GetWindowWidthHeight(int& width, int& height);
|
|
|
|
|
|
|
|
int GetWindowWidth();
|
|
|
|
|
2013-02-20 05:10:38 +00:00
|
|
|
int GetWindowHeight();*/
|
2013-01-19 20:02:34 +00:00
|
|
|
|
|
|
|
} //namespace SE
|