安全上下文
此特征只可用于
安全上下文
(HTTPS),在某些或所有
支持浏览器
.
当使用
XRWebGLLayer()
constructor to create a new WebGL rendering layer for WebXR, providing as the
layerInit
parameter an object whose
stencil
特性为
false
requests that the new layer be created without a stencil buffer.
stencil buffer is an optional buffer which, just like the depth buffer, contains one entry for every pixel in the frame buffer. Also just like the depth buffer, the value of an enter in the stencil buffer directly affects how (or if) the corresponding pixel is drawn during rendering. You can store values into each entry in the stencil bufer, then specify an operation that determines which stencil buffer values correspond to pixels which should be drawn to the screen during each frame.
let layerInit = {
stencil: false
};
let glLayer = new XRWebGLLayer(xrSession, gl, layerInit);
let glLayer = new XRWebGLLayer(xrSession, gl, { stencil: false });
A Boolean which can be set to
false
to specify that the new WebGL layer should not include a stencil buffer. The default value is
true
.
In this example, a new
XRWebGLLayer
is created for a WebXR session,
xrSession
, without a stencil buffer.
xrSession.updateRenderState({
baseLayer: new XRWebGLLayer(xrSession, gl, {
stencil: false
});
});
| 规范 | 状态 | 注释 |
|---|---|---|
|
WebXR 设备 API
The definition of 'XRWebGLLayerInit.stencil' in that specification. |
工作草案 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
stencil
|
Chrome 79 | Edge 79 | Firefox No | IE No | Opera No | Safari No | WebView Android 79 | Chrome Android 79 | Firefox Android No | Opera Android No | Safari iOS No | Samsung Internet Android 11.2 |
完整支持
不支持
stencilOp()
,
clearStencil()
,
stencilFunc()
,
stencilMask()
,
stencilMaskSeparate()
,
stencilFuncSeparate()
,
stencilOpSeparate()
,
XRWebGLLayerInit
Navigator.xr
WebGLRenderingContext.makeXRCompatible()
XR
XRBoundedReferenceSpace
XRFrame
XRInputSource
XRInputSourceArray
XRInputSourceEvent
XRInputSourcesChangeEvent
XRPose
XRReferenceSpace
XRReferenceSpaceEvent
XRRenderState
XRRigidTransform
XRSession
XRSessionEvent
XRSpace
XRView
XRViewerPose
XRViewport
XRWebGLLayer