EASYAIuniappNewUI/node_modules/uview-plus/libs/util/gcanvas/context-webgl/ShaderPrecisionFormat.js
2025-02-08 18:50:38 +08:00

11 lines
273 B
JavaScript

export default class WebGLShaderPrecisionFormat {
className = 'WebGLShaderPrecisionFormat';
constructor({
rangeMin, rangeMax, precision
}) {
this.rangeMin = rangeMin;
this.rangeMax = rangeMax;
this.precision = precision;
}
}