安全上下文
此特征只可用于
安全上下文
(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. |
工作草案 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
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 |
完整支持
不支持
XRWebGLLayer
Navigator.xr
WebGLRenderingContext.makeXRCompatible()
XR
XRBoundedReferenceSpace
XRFrame
XRInputSource
XRInputSourceArray
XRInputSourceEvent
XRInputSourcesChangeEvent
XRPose
XRReferenceSpace
XRReferenceSpaceEvent
XRRenderState
XRRigidTransform
XRSession
XRSessionEvent
XRSpace
XRView
XRViewerPose
XRViewport