Add exposure HDR lighting

This commit is contained in:
4VRDriver
2020-09-22 10:40:25 +02:00
parent 34a294dcaf
commit bbd186bca9
13 changed files with 165 additions and 43 deletions

View File

@@ -26,4 +26,20 @@ private:
ShaderProgram *shaderProgram;
};
class DepthMap {
public:
DepthMap(int resolution);
void bind();
void unbind();
private:
GLuint depthMapFBO;
};