refactored shitty unusable code
Signed-off-by: rattatwinko <seppmutterman@gmail.com>
This commit is contained in:
@@ -1,25 +1,6 @@
|
||||
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;
|
||||
}
|
||||
public record 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) {
|
||||
}
|
||||
Reference in New Issue
Block a user