src/enums/SMAAPreset.js
/**
* An enumeration of SMAA presets.
*
* @type {Object}
* @property {Number} LOW - Results in around 60% of the maximum quality.
* @property {Number} MEDIUM - Results in around 80% of the maximum quality.
* @property {Number} HIGH - Results in around 95% of the maximum quality.
* @property {Number} ULTRA - Results in around 99% of the maximum quality.
*/
export const SMAAPreset = {
LOW: 0,
MEDIUM: 1,
HIGH: 2,
ULTRA: 3
};