aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Graphics/Texture.h
blob: 45f3f349da693e50e38b3a9f662812640816b3fa (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
30
31
#ifndef __LIBJIN_TEXTURE_H
#define __LIBJIN_TEXTURE_H
#include "../configuration.h"
#if LIBJIN_MODULES_RENDER

#include "../3rdparty/GLee/GLee.h"
#include "Color.h"
#include "Drawable.h"
#include "Bitmap.h"
namespace jin 
{ 
	namespace graphics
	{

		class Texture: public Drawable
		{
		public:
			static Texture* createTexture(Bitmap* bitmap);

			~Texture();

		private:
			Texture(const Bitmap* bitmap);

		};

	} // namespace graphics
} // namespace jin

#endif // LIBJIN_MODULES_RENDER
#endif // __LIBJIN_TEXTURE_H