testing some new stuff!

This commit is contained in:
2026-01-18 21:00:24 +01:00
parent e7a3d98dd0
commit c393e05bb1
11 changed files with 917 additions and 415 deletions

View 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;
}
}