summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Zotti <Georg.Zotti@univie.ac.at>2022-01-04 12:08:48 +0100
committerGeorg Zotti <Georg.Zotti@univie.ac.at>2022-01-04 12:08:48 +0100
commite51cf176ab2e1c319fdd26efad90af70929aa299 (patch)
tree2883eeea41af2866c13a5fac67d6d7f5bf44f9a5
parent272921757aa3417d7d24b9691f1b707ce3572f22 (diff)
Hide debug outputgz_AtmosphereTweaks
-rw-r--r--src/core/modules/Atmosphere.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/modules/Atmosphere.cpp b/src/core/modules/Atmosphere.cpp
index 94f5414b01..21228aa93a 100644
--- a/src/core/modules/Atmosphere.cpp
+++ b/src/core/modules/Atmosphere.cpp
@@ -438,8 +438,8 @@ void Atmosphere::draw(StelCore* core)
GL(atmoShaderProgram->disableAttributeArray(shaderAttribLocations.skyVertex));
GL(atmoShaderProgram->disableAttributeArray(shaderAttribLocations.skyColor));
GL(atmoShaderProgram->release());
- // GZ: debug output
- sPainter.setColor(0.7f, 0.7f, 0.7f);
- sPainter.drawText(83, 108, QString("Tonemapper::worldAdaptationLuminance(): %1" ).arg(eye->getWorldAdaptationLuminance()));
- sPainter.drawText(83, 120, QString("Atmosphere::getAverageLuminance(): %1" ).arg(getAverageLuminance()));
+ // debug output
+ // sPainter.setColor(0.7f, 0.7f, 0.7f);
+ // sPainter.drawText(83, 108, QString("Tonemapper::worldAdaptationLuminance(): %1" ).arg(eye->getWorldAdaptationLuminance()));
+ // sPainter.drawText(83, 120, QString("Atmosphere::getAverageLuminance(): %1" ).arg(getAverageLuminance()));
}