OES_texture_float_linear 扩展属于 WebGL API and allows linear filtering with floating-point pixel types for textures.

WebGL extensions are available using the WebGLRenderingContext.getExtension() method. For more information, see also 使用扩展 WebGL 教程 .

可用性: This extension is available to both, WebGL1 and WebGL2 上下文。

Linear filtering

OES_texture_float extension alone does not allow linear filtering with floating-point textures. This extension enables this ability.

With the help of this extension, you can now set the magnification or minification filter in the WebGLRenderingContext.texParameter() method to one of gl.LINEAR , gl.LINEAR_MIPMAP_NEAREST , gl.NEAREST_MIPMAP_LINEAR ,或 gl.LINEAR_MIPMAP_LINEAR , and use floating-point textures.

范例

gl.getExtension('OES_texture_float');
gl.getExtension('OES_texture_float_linear');
var texture = gl.createTexture();
gl.bindTexture(gl.TEXTURE_2D, texture);
gl.texParameterf(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.FLOAT, image);
					

规范

规范 状态 注释
OES_texture_float_linear
The definition of 'OES_texture_float_linear' in that specification.
推荐 初始定义。

浏览器兼容性

更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
OES_texture_float_linear Chrome Yes Edge ≤18 Firefox 24 IE ? Opera Yes Safari ? WebView Android Yes Chrome Android Yes Firefox Android ? Opera Android Yes Safari iOS ? Samsung Internet Android Yes

图例

完整支持

完整支持

兼容性未知 ?

兼容性未知

另请参阅

元数据

  • 最后修改: