Volume Renderer DoF
FBO.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <glew.h>
4 #include <iostream>
5 
7 class FBO
8 {
9 public:
10  FBO();
11  ~FBO();
12 
14  const GLuint getID() const;
15 
17  const GLuint getTXO() const;
18 
19 private:
21  GLuint id;
22 
24  GLuint txo;
25 };
26 
~FBO()
Definition: FBO.cpp:34
FBO()
Definition: FBO.cpp:3
Definition: FBO.h:7
const GLuint getTXO() const
Definition: FBO.cpp:44
const GLuint getID() const
Definition: FBO.cpp:40