Skip to content

Commit bbbb434

Browse files
committed
fix javadoc
1 parent 653746f commit bbbb434

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

jme3-effects/src/main/java/com/jme3/post/filters/KHRToneMapFilter.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)