11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
|
export default class WebGLShaderPrecisionFormat {
|
||
|
className = 'WebGLShaderPrecisionFormat';
|
||
|
|
||
|
constructor({
|
||
|
rangeMin, rangeMax, precision
|
||
|
}) {
|
||
|
this.rangeMin = rangeMin;
|
||
|
this.rangeMax = rangeMax;
|
||
|
this.precision = precision;
|
||
|
}
|
||
|
}
|