2014-11-08 00:17:23 +00:00
|
|
|
#ifndef MATERIAL_HH_INCLUDED
|
|
|
|
#define MATERIAL_HH_INCLUDED
|
2014-10-20 17:09:34 +00:00
|
|
|
|
|
|
|
#include <string>
|
2014-10-22 21:17:18 +00:00
|
|
|
#include <ACGL/OpenGL/Creator/Texture2DCreator.hh>
|
|
|
|
#include <ACGL/OpenGL/Data/TextureLoadStore.hh>
|
|
|
|
#include <ACGL/OpenGL/Managers.hh>
|
2014-10-20 17:09:34 +00:00
|
|
|
|
2014-11-08 00:17:23 +00:00
|
|
|
class Material{
|
2014-10-20 17:09:34 +00:00
|
|
|
public:
|
2014-11-08 00:17:23 +00:00
|
|
|
Material(std::string filePath);
|
|
|
|
Material();
|
2014-10-22 21:17:18 +00:00
|
|
|
ACGL::OpenGL::SharedTexture2D getReference();
|
2014-11-08 00:17:23 +00:00
|
|
|
~Material();
|
2014-10-20 17:09:34 +00:00
|
|
|
private:
|
2014-10-22 21:17:18 +00:00
|
|
|
ACGL::OpenGL::SharedTexture2D reference;
|
2014-10-20 17:09:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|