Retrait d'instances de mc"clone"
This commit is contained in:
23
SQCSim2021/texture.h
Normal file
23
SQCSim2021/texture.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef TEXTURE_H__
|
||||
#define TEXTURE_H__
|
||||
|
||||
#include "define.h"
|
||||
#include <IL/il.h>
|
||||
#include <string>
|
||||
|
||||
class Texture
|
||||
{
|
||||
public:
|
||||
Texture(const std::string& filename = "");
|
||||
~Texture();
|
||||
|
||||
bool Load(const std::string& filename);
|
||||
bool IsValid() const;
|
||||
void Bind() const;
|
||||
|
||||
private:
|
||||
GLuint m_textureId;
|
||||
bool m_isValid;
|
||||
};
|
||||
|
||||
#endif // TEXTURE_H__
|
Reference in New Issue
Block a user