TAMSVIZ
Visualization and annotation tool for ROS
Main Page
Classes
Files
File List
src
render
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
};
ResourceBase
Definition:
resource.h:23
Renderbuffer
Definition:
renderbuffer.h:11
Watcher
Definition:
watcher.h:8
Generated by
1.8.11