aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/effects/LevelAdjust.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/effects/LevelAdjust.qml b/src/effects/LevelAdjust.qml
index 619b38a..004c798 100644
--- a/src/effects/LevelAdjust.qml
+++ b/src/effects/LevelAdjust.qml
@@ -84,7 +84,9 @@ Item {
This property defines the change factor for how the value of each pixel
color channel is altered according to the equation:
- \code result.rgb = pow(original.rgb, 1.0 / gamma.rgb); \endcode
+ \code
+ result.rgb = pow(original.rgb, 1.0 / gamma.rgb);
+ \endcode
Setting the gamma values under QtVector3d(1.0, 1.0, 1.0) makes the image
darker, the values above QtVector3d(1.0, 1.0, 1.0) lighten it.