File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
jme3-effects/src/main/java/com/jme3/post/filters Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public class KHRToneMapFilter extends Filter {
5555 private final Vector3f gamma = new Vector3f (DEFAULT_GAMMA , DEFAULT_GAMMA , DEFAULT_GAMMA );
5656
5757 /**
58- * Creates a tone-mapping filter with the default white-point .
58+ * Creates a tone-mapping filter with the default exposure and gamma .
5959 */
6060 public KHRToneMapFilter () {
6161 super ("KHRToneMapFilter" );
@@ -81,6 +81,8 @@ protected Material getMaterial() {
8181
8282 /**
8383 * Set the exposure for the tone mapping.
84+ *
85+ * @param whitePoint The exposure vector.
8486 */
8587 public void setExposure (Vector3f whitePoint ) {
8688 this .exposure .set (whitePoint );
@@ -98,6 +100,8 @@ public Vector3f getExposure() {
98100
99101 /**
100102 * Set the gamma for the tone mapping.
103+ *
104+ * @param gamma The gamma vector.
101105 */
102106 public void setGamma (Vector3f gamma ) {
103107 this .gamma .set (gamma );
You can’t perform that action at this time.
0 commit comments