TAMSVIZ
Visualization and annotation tool for ROS
texture.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "../core/loader.h"
7 #include "../core/watcher.h"
8 
9 #include "opengl.h"
10 #include "resource.h"
11 
12 namespace cv {
13 class Mat;
14 }
15 
16 enum class TextureType {
17  Color = 0,
18  Normal = 1,
19  Linear = 2,
20 };
21 
22 class Texture;
23 
25 
26 class TextureData;
27 
28 class TextureBase : public ResourceBase {
29 protected:
30  GLuint _id = 0;
31  void destroy();
32 
33 public:
34  ~TextureBase() { destroy(); }
35  inline GLuint id() const { return _id; }
36  void create();
37 };
38 
39 class Texture : public TextureBase {
40  bool _loaded = false;
41  TextureType _type = TextureType::Color;
42  std::string _url;
43  Loader<TextureData> _loader;
44  Watcher _watcher;
45  bool _transparent = false;
46  bool _mipmap = true;
47 
48 public:
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);
53  GLuint update();
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; }
57  static TextureManager &manager();
58 };
Definition: texture.h:12
Definition: watcher.h:8