6 #include "../core/loader.h" 7 #include "../core/watcher.h" 16 enum class TextureType {
35 inline GLuint id()
const {
return _id; }
41 TextureType _type = TextureType::Color;
45 bool _transparent =
false;
49 Texture(TextureType type = TextureType::Color) : _type(type) {}
50 Texture(
const std::string &url, TextureType type);
51 void mipmap(
bool mipmap) { _mipmap = mipmap; }
52 GLuint update(
const cv::Mat &image);
54 GLuint update(
int width,
int height,
int format,
int samples = 0);
55 bool transparent()
const {
return _transparent; }
56 const std::string &url()
const {
return _url; }