ext.MAX_TEXTURE_MAX_ANISOTROPY_EXT
This is the pname
argument to the gl.getParameter()
call, and it returns the maximum available anisotropy.
ext.TEXTURE_MAX_ANISOTROPY_EXT
This is the pname
argument to the gl.getTexParameter()
and gl.texParameterf()
/ gl.texParameteri()
calls and sets the desired maximum anisotropy for a texture.
const texture = gl.createTexture();
gl.bindTexture(gl.TEXTURE_2D, texture);
const ext =
gl.getExtension("EXT_texture_filter_anisotropic") ||
gl.getExtension("MOZ_EXT_texture_filter_anisotropic") ||
gl.getExtension("WEBKIT_EXT_texture_filter_anisotropic");
if (ext) {
const max = gl.getParameter(ext.MAX_TEXTURE_MAX_ANISOTROPY_EXT);
gl.texParameterf(gl.TEXTURE_2D, ext.TEXTURE_MAX_ANISOTROPY_EXT, max);
}
Specifications Browser compatibility
Loadingâ¦
See alsoRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.5