安全上下文
此特征只可用于 安全上下文 (HTTPS),在某些或所有 支持浏览器 .

只读 XRWebGLLayer property antialias is a Boolean value which is true if the rendering layer's frame buffer supports antialiasing. Otherwise, this property's value is false . The specific antialiasing technique used is left to the user agent's discretion and cannot be specified by the web site or web app.

句法

let antialiasingSupported = xrWebGLLayer.antialias;
					

A Boolean value which is true if the WebGL rendering layer's frame buffer is configured to support antialiasing. Otherwise, this property is false .

WebXR compositor is enabled, this value corresponds to the value of the antialias property on the object returned by the WebGL context's getContentAttributes() 方法。

用法注意事项

Since this is a read-only property, you can set the antialiasing mode only when initially creating the XRWebGLLayer , by specifying the antialias object in the XRWebGLLayer() constructor's layerInit 参数。

范例

This snippet checks the value of antialias to see if it should perform additional work to attempt to compensate for the lack of antialiasing on the WebGL layer.

let glLayer = xrSession.renderState.baseLayer;
gl.bindFrameBuffer(gl.FRAMEBUFFER, glLayer.framebuffer);
/* .. */
if (!glLayer.antialias) {
  /* compensate for lack of antialiasing */
}
					

规范

规范 状态 注释
WebXR 设备 API
The definition of 'XRWebGLLayer.antialias' in that specification.
工作草案 初始定义。

浏览器兼容性

The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
antialias Chrome 79 Edge 79 Firefox No IE No Opera No Safari No WebView Android No Chrome Android 79 Firefox Android No Opera Android No Safari iOS No Samsung Internet Android 11.2

图例

完整支持

完整支持

不支持

不支持

另请参阅

元数据

  • 最后修改: