aboutsummaryrefslogtreecommitdiff
path: root/engine/src/core-effects/com/jme3/post/filters/GammaCorrectionFilter.java
blob: 9e283ca13eadf8c3876cc82529feb0d910933226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.jme3.post.filters;

import com.jme3.asset.AssetManager;
import com.jme3.material.Material;
import com.jme3.post.Filter;
import com.jme3.renderer.RenderManager;
import com.jme3.renderer.ViewPort;

/**
 * 
 * @author Phate666
 * @version 1.0 initial version
 * @version 1.1 added luma
 */
public class GammaCorrectionFilter extends Filter
{
	private float gamma = 2.0f;
	private boolean computeLuma = false;

	public GammaCorrectionFilter()
	{
		super("GammaCorrectionFilter");
	}

	public GammaCorrectionFilter(float gamma)
	{
		this();
		this.setGamma(gamma);
	}

	@Override
	protected Material getMaterial()
	{
		return material;
	}

	@Override
	protected void initFilter(AssetManager manager,
			RenderManager renderManager, ViewPort vp, int w, int h)
	{
		material = new Material(manager,
				"Common/MatDefs/Post/GammaCorrection.j3md");
		material.setFloat("gamma", gamma);
		material.setBoolean("computeLuma", computeLuma);
	}

	public float getGamma()
	{
		return gamma;
	}

	/**
	 * set to 0.0 to disable gamma correction
	 * @param gamma
	 */
	public void setGamma(float gamma)
	{
		if (material != null)
		{
			material.setFloat("gamma", gamma);
		}
		this.gamma = gamma;
	}

	public boolean isComputeLuma()
	{
		return computeLuma;
	}

	public void setComputeLuma(boolean computeLuma)
	{
		if (material != null)
		{
			material.setBoolean("computeLuma", computeLuma);
		}
		this.computeLuma = computeLuma;
	}
}