summaryrefslogtreecommitdiff
path: root/gfx/models/texture.h
blob: 30ba9536c924f5a639797a79e2a08ecfcb37ad2e (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
#ifndef TEXTURE_H
#define TEXTURE_H

#include <GL/glew.h>
#include <special_members.hpp>
#include <string>

template<typename Obj> class Cache;

class Texture {
public:
	explicit Texture(const std::string & fileName);

	virtual ~Texture();

	NO_COPY(Texture);
	NO_MOVE(Texture);

	static Cache<Texture> cachedTexture;

	void Bind() const;

private:
	GLuint m_texture;
};

#endif