testing some new stuff!
This commit is contained in:
25
src/main/java/io/swtc/proccessing/EffectState.java
Normal file
25
src/main/java/io/swtc/proccessing/EffectState.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package io.swtc.proccessing;
|
||||
|
||||
public class EffectState {
|
||||
public final boolean awbEnabled, dnrEnabled, edgeEnhance;
|
||||
public final int awbStrength, dnrSpatial, dnrTemporal;
|
||||
public final int temperature, tint, saturation, shadows, highlights, sharpness;
|
||||
|
||||
public EffectState(boolean awbEnabled, int awbStrength, boolean dnrEnabled,
|
||||
int dnrSpatial, int dnrTemporal, int temperature, int tint,
|
||||
int saturation, int shadows, int highlights,
|
||||
int sharpness, boolean edgeEnhance) {
|
||||
this.awbEnabled = awbEnabled;
|
||||
this.awbStrength = awbStrength;
|
||||
this.dnrEnabled = dnrEnabled;
|
||||
this.dnrSpatial = dnrSpatial;
|
||||
this.dnrTemporal = dnrTemporal;
|
||||
this.temperature = temperature;
|
||||
this.tint = tint;
|
||||
this.saturation = saturation;
|
||||
this.shadows = shadows;
|
||||
this.highlights = highlights;
|
||||
this.sharpness = sharpness;
|
||||
this.edgeEnhance = edgeEnhance;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user