@awayjs/stage
Version:
Stage for AwayJS
18 lines (17 loc) • 480 B
JavaScript
var OpLUT = /** @class */ (function () {
function OpLUT(s, flags, dest, a, b, matrixwidth, matrixheight, ndwm, scaler, dm, lod) {
this.s = s;
this.flags = flags;
this.dest = dest;
this.a = a;
this.b = b;
this.matrixwidth = matrixwidth;
this.matrixheight = matrixheight;
this.ndwm = ndwm;
this.scalar = scaler;
this.dm = dm;
this.lod = lod;
}
return OpLUT;
}());
export { OpLUT };