TAMSVIZ
Visualization and annotation tool for ROS
renderbuffer.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "../core/watcher.h"
7 
8 #include "opengl.h"
9 #include "resource.h"
10 
11 class Renderbuffer : public ResourceBase {
12 protected:
13  GLuint _id = 0;
14  void destroy();
15  Watcher _watcher;
16 
17 public:
18  ~Renderbuffer() { destroy(); }
19  inline GLuint id() const { return _id; }
20  void create();
21  void update(int width, int height, int format, int samples = 0);
22  void bind();
23 };
Definition: watcher.h:8