aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Graphics/OpenGL.h
blob: 47011a2a0560ee177fb65a6ebcb5d7b55d347d7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef __LIBJIN_OPENGL_H
#define __LIBJIN_OPENGL_H
#include "../3rdparty/GLee/GLee.h"
#include "../3rdparty/ogl/OpenGL.h"
#include "../Math/Matrix.h"

namespace jin
{
	namespace graphics
	{

		class OpenGL : public ogl2d::OpenGL
		{
		public:	
			math::Matrix ProjectionMatrix;
			math::Matrix ModelMatrix;

			OpenGL() : ogl2d::OpenGL() 
			{
			}

		};

		extern OpenGL gl;

	}
}

#endif