refactored shitty unusable code

Signed-off-by: rattatwinko <seppmutterman@gmail.com>
This commit is contained in:
2026-01-19 12:00:50 +01:00
parent c393e05bb1
commit f6ee3e915e
24 changed files with 684 additions and 680 deletions

View File

@@ -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) {
}