List of usage examples for com.google.gwt.webgl.client WebGLShaderPrecisionFormat getRangeMin
public native int getRangeMin() ;
From source file:org.parallax3d.parallax.platforms.gwt.GwtGL20.java
License:Open Source License
@Override public void glGetShaderPrecisionFormat(int shadertype, int precisiontype, IntBuffer range, IntBuffer precision) {/* w ww. j a v a2 s. c om*/ WebGLShaderPrecisionFormat format = gl.getShaderPrecisionFormat(shadertype, precisiontype); range.put(format.getRangeMin()); precision.put(format.getPrecision()); }