Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1x 205x | import WebGLConstants from "../Core/WebGLConstants.js";
/**
* @private
*/
const MipmapHint = {
DONT_CARE: WebGLConstants.DONT_CARE,
FASTEST: WebGLConstants.FASTEST,
NICEST: WebGLConstants.NICEST,
validate: function (mipmapHint) {
return (
mipmapHint === MipmapHint.DONT_CARE ||
mipmapHint === MipmapHint.FASTEST ||
mipmapHint === MipmapHint.NICEST
);
},
};
export default Object.freeze(MipmapHint);
|