XRWebGLSubImage: imageIndex 属性

实验性: 这是一项 实验性技术
在生产环境中使用此功能之前,请仔细查看 浏览器兼容性表

XRWebGLSubImage 接口的只读 imageIndex 属性是一个数字,表示如果层是用 texture-array 请求的,则表示纹理数组的偏移量;否则为 null

如果层不是用 texture-array 请求的,则为数字或 null

使用 imageIndex

imageIndex 属性可以传递给 WebGL2RenderingContext.framebufferTextureLayer(),以将深度和颜色纹理附加到具有正确层索引的帧缓冲区。

js
const xrGlBinding = new XRWebGLBinding(xrSession, gl);
const layer = xrGlBinding.createProjectionLayer({
  textureType: "texture-array",
});
const framebuffer = gl.createFramebuffer();

xrSession.updateRenderState({ layers: [layer] });
xrSession.requestAnimationFrame(onXRFrame);

function onXRFrame(time, xrFrame) {
  xrSession.requestAnimationFrame(onXRFrame);

  gl.bindFramebuffer(gl.FRAMEBUFFER, framebuffer);
  const viewport = xrGlBinding.getSubImage(layer, xrFrame).viewport;
  gl.viewport(viewport.x, viewport.y, viewport.width, viewport.height);

  for (const view in xrViewerPose.views) {
    const subImage = xrGlBinding.getViewSubImage(layer, view);
    gl.framebufferTextureLayer(
      gl.FRAMEBUFFER,
      gl.COLOR_ATTACHMENT0,
      subImage.colorTexture,
      0,
      subImage.imageIndex,
    );
    gl.framebufferTextureLayer(
      gl.FRAMEBUFFER,
      gl.DEPTH_ATTACHMENT,
      subImage.depthStencilTexture,
      0,
      subImage.imageIndex,
    );

    // Render from the viewpoint of xrView
  }
}

规范

规范
WebXR Layers API 1 级
# dom-xrwebglsubimage-imageindex

浏览器兼容性

BCD 表格仅在启用了 JavaScript 的浏览器中加载。

另请参阅