TAMSVIZ
Visualization and annotation tool for ROS
renderbuffer.cpp
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #include "renderbuffer.h"
5 
6 void Renderbuffer::destroy() {
7  if (_id) {
8  GLuint fbo = _id;
9  cleanup([fbo]() { V_GL(glDeleteRenderbuffers(1, &fbo)); });
10  _id = 0;
11  }
12 }
13 
14 void Renderbuffer::create() {
15  if (!_id) {
16  V_GL(glGenRenderbuffers(1, &_id));
17  }
18 }
19 
20 void Renderbuffer::bind() {
21  create();
22  V_GL(glBindRenderbuffer(GL_RENDERBUFFER, _id));
23 }
24 
25 void Renderbuffer::update(int width, int height, int format, int samples) {
26  create();
27  if (_watcher.changed(width, height, format, samples)) {
28  bind();
29  V_GL(glRenderbufferStorageMultisample(GL_RENDERBUFFER, samples, format,
30  width, height));
31  }
32 }