testing the water...

This commit is contained in:
Sam Gateau 2019-01-31 16:18:47 -08:00
parent 196748c4f9
commit 84db9f4729
2 changed files with 3 additions and 3 deletions

View file

@ -66,7 +66,7 @@ void GraphicsEngine::initializeGPU(GLWidget* glwidget) {
}
void GraphicsEngine::initializeRender(bool disableDeferred) {
disableDeferred = false;
disableDeferred = true;
// Set up the render engine
render::CullFunctor cullFunctor = LODManager::shouldRender;

View file

@ -51,7 +51,7 @@ private:
float _exposure = 0.0f;
float _twoPowExposure = 1.0f;
glm::vec2 spareA;
int _toneCurve = Gamma22;
int _toneCurve = None;
glm::vec3 spareB;
Parameters() {}
@ -74,7 +74,7 @@ public:
float exposure{ 0.0f };
int curve{ ToneMappingEffect::Gamma22 };
int curve{ ToneMappingEffect::None };
signals:
void dirty();
};