public ColState(int r, int g, int b, int a) { this(Utils.clipcol(r, g, b, a)); }
public Fog(Color c, float s, float e) { this.c = c; this.ca = Utils.c2fa(c); this.s = s; this.e = e; }
public ColState(Color c) { this.c = c; this.ca = Utils.c2fa(c); }
public ColorMask(Color col) { this.col = Utils.c2fa(col); }