使用 WebGL 支持模板缓冲区

使用模板缓冲区请求初始化 webgl canvas.getContext("webgl", {stencil : true}),但并非所有浏览器实际上都会给你一个(对我来说,Ubuntu 20.04 LTS 上的 Firefox 79.0 不起作用,但 Chrome 84.0.4147.89 可以。我的显卡是 NVIDIA RTX 2060,我正在使用nvidia-driver-440-server 驱动程序)。

我想知道模板缓冲区的支持有多广泛,但我找不到有关支持哪些浏览器的信息。像 之类的函数glStencilOp是我唯一能找到支持信息的东西,它们仍然可以使用,它们只是不使用 0 模板位做任何事情。

是否有支持此功能的浏览器列表?


千万里不及你
浏览 75回答 1
1回答

翻阅古今

老实说,这听起来像是 firefox 中的错误,尽管鉴于规范允许实现无法出于任何原因在画布上提供模板缓冲区,但从技术上讲这不是错误。我会考虑填一个。使用 Chromium 浏览器进行测试,以检查这是 Firefox 选择不提供模板缓冲区,而不是驱动程序问题或其他问题。您应该能够始终制作DEPTH_STENCIL渲染缓冲区。没有允许实现不支持的 WebGL 版本。因此,您可以通过渲染到附加到帧缓冲区的纹理+深度模板渲染缓冲区来解决该错误,然后将帧缓冲区颜色纹理渲染到画布。这是一个测试。您应该会看到一个右下角为绿色的红色正方形。那将在紫色方块内的蓝色方块内。蓝色方块用于显示帧缓冲区纹理的范围。如果绿色方块没有被模板缓冲区遮盖,它就会渗入蓝色。紫色方块显示画布的大小,我们绘制的帧缓冲区纹理小于整个画布。这只是为了表明模板缓冲区可以在您的机器上工作。对于您自己的解决方案,您希望绘制一个由顶点组成的四边形而不是使用如下所示的点,并且您希望使附加到帧缓冲区的纹理和渲染缓冲区与画布的大小相同。"use strict";function main() {&nbsp; const gl = document.querySelector("canvas").getContext("webgl");&nbsp;&nbsp;&nbsp; const vs = `&nbsp; attribute vec4 position;"use strict";function main() {&nbsp; const gl = document.querySelector("canvas").getContext("webgl");&nbsp;&nbsp;&nbsp; const vs = `&nbsp; attribute vec4 position;&nbsp; void main() {&nbsp; &nbsp; gl_Position = position;&nbsp; &nbsp; gl_PointSize = 64.0;&nbsp; }&nbsp; `;&nbsp; const fs = `&nbsp; precision mediump float;&nbsp; uniform sampler2D tex;&nbsp; void main() {&nbsp; &nbsp; &nbsp;gl_FragColor = texture2D(tex, gl_PointCoord.xy);&nbsp; }&nbsp; `;&nbsp; const program = twgl.createProgram(gl, [vs, fs]);&nbsp; const posLoc = gl.getAttribLocation(program, "position");&nbsp; // Create a texture to render to&nbsp; const targetTextureWidth = 128;&nbsp; const targetTextureHeight = 128;&nbsp; const targetTexture = createTexture(gl);&nbsp; {&nbsp; &nbsp; // define size and format of level 0&nbsp; &nbsp; const level = 0;&nbsp; &nbsp; const internalFormat = gl.RGBA;&nbsp; &nbsp; const border = 0;&nbsp; &nbsp; const format = gl.RGBA;&nbsp; &nbsp; const type = gl.UNSIGNED_BYTE;&nbsp; &nbsp; const data = null;&nbsp; &nbsp; gl.texImage2D(gl.TEXTURE_2D, level, internalFormat,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; targetTextureWidth, targetTextureHeight, border,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; format, type, data);&nbsp; }&nbsp; // Create and bind the framebuffer&nbsp; const fb = gl.createFramebuffer();&nbsp; gl.bindFramebuffer(gl.FRAMEBUFFER, fb);&nbsp; // attach the texture as the first color attachment&nbsp; const attachmentPoint = gl.COLOR_ATTACHMENT0;&nbsp; const level = 0;&nbsp; gl.framebufferTexture2D(gl.FRAMEBUFFER, attachmentPoint, gl.TEXTURE_2D, targetTexture, level);&nbsp; // create a depth-stencil renderbuffer&nbsp; const depthStencilBuffer = gl.createRenderbuffer();&nbsp; gl.bindRenderbuffer(gl.RENDERBUFFER, depthStencilBuffer);&nbsp; // make a depth-stencil buffer and the same size as the targetTexture&nbsp; gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_COMPONENT16, targetTextureWidth, targetTextureHeight);&nbsp; gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_ATTACHMENT, gl.RENDERBUFFER, depthStencilBuffer);&nbsp;&nbsp;&nbsp; function createTexture(gl, color) {&nbsp; &nbsp; const tex = gl.createTexture();&nbsp; &nbsp; gl.bindTexture(gl.TEXTURE_2D, tex);&nbsp; &nbsp; // set the filtering so we don't need mips&nbsp; &nbsp; gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);&nbsp; &nbsp; gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);&nbsp; &nbsp; gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);&nbsp; &nbsp; if (color) {&nbsp; &nbsp; &nbsp; gl.texImage2D(&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(color));&nbsp; &nbsp; }&nbsp; &nbsp; return tex;&nbsp; }&nbsp;&nbsp;&nbsp; // create a red texture and a green texture&nbsp; const redTex = createTexture(gl, [255, 0, 0, 255]);&nbsp; const greenTex = createTexture(gl, [0, 255, 0, 255]);&nbsp; gl.enable(gl.STENCIL_TEST);&nbsp; gl.useProgram(program);&nbsp; gl.clearColor(0, 0, 1, 1);&nbsp; gl.clear(gl.COLOR_BUFFER_BIT);&nbsp;&nbsp;&nbsp; gl.bindTexture(gl.TEXTURE_2D, redTex);&nbsp; gl.stencilFunc(&nbsp; &nbsp; &nbsp; &nbsp;gl.ALWAYS,&nbsp; &nbsp; // the test&nbsp; &nbsp; &nbsp; &nbsp;1,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // reference value&nbsp; &nbsp; &nbsp; &nbsp;0xFF,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// mask&nbsp; &nbsp; );&nbsp;&nbsp;&nbsp; gl.stencilOp(&nbsp; &nbsp; &nbsp;gl.KEEP,&nbsp; &nbsp; &nbsp;// what to do if the stencil test fails&nbsp; &nbsp; &nbsp;gl.KEEP,&nbsp; &nbsp; &nbsp;// what to do if the depth test fails&nbsp; &nbsp; &nbsp;gl.REPLACE,&nbsp; // what to do if both tests pass&nbsp; );&nbsp;&nbsp;&nbsp; // draw a 64x64 pixel red rect in middle&nbsp; gl.drawArrays(gl.POINTS, 0, 1);&nbsp;&nbsp;&nbsp; gl.stencilFunc(&nbsp; &nbsp; &nbsp; &nbsp;gl.EQUAL,&nbsp; &nbsp; &nbsp;// the test&nbsp; &nbsp; &nbsp; &nbsp;1,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // reference value&nbsp; &nbsp; &nbsp; &nbsp;0xFF,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// mask&nbsp; &nbsp; );&nbsp;&nbsp;&nbsp; gl.stencilOp(&nbsp; &nbsp; &nbsp;gl.KEEP,&nbsp; &nbsp; &nbsp;// what to do if the stencil test fails&nbsp; &nbsp; &nbsp;gl.KEEP,&nbsp; &nbsp; &nbsp;// what to do if the depth test fails&nbsp; &nbsp; &nbsp;gl.KEEP,&nbsp; // what to do if both tests pass&nbsp; );&nbsp; // draw a green 64x64 pixel square in the&nbsp; // upper right corner. The stencil will make&nbsp; // it not go outside the red square&nbsp; gl.vertexAttrib2f(posLoc, 0.5, 0.5);&nbsp; gl.bindTexture(gl.TEXTURE_2D, greenTex);&nbsp; gl.drawArrays(gl.POINTS, 0, 1);&nbsp; // draw the framebuffer's texture to&nbsp; // the canvas. we should see a 32x32&nbsp; // red square with the bottom right corner&nbsp; // green showing the stencil worked. That will&nbsp; // be surrounded by blue to show the texture&nbsp; // we were rendering to is larger than the&nbsp; // red square. And that will be surrounded&nbsp; // by purple since we're drawing a 64x64&nbsp; // point on a 128x128 canvas which we clear&nbsp;&nbsp; // purple.&nbsp; gl.bindFramebuffer(gl.FRAMEBUFFER, null);&nbsp; gl.clearColor(1, 0, 1, 1);&nbsp; gl.clear(gl.COLOR_BUFFER_BIT);&nbsp;&nbsp;&nbsp; gl.vertexAttrib2f(posLoc, 0.0, 0.0);&nbsp; gl.bindTexture(gl.TEXTURE_2D, targetTexture);&nbsp; gl.drawArrays(gl.POINTS, 0, 1);&nbsp;&nbsp;}main();canvas { border: 1px solid black; }<script src="https://twgljs.org/dist/4.x/twgl.min.js"></script><canvas width="128" height="128"></canvas>&nbsp; void main() {&nbsp; &nbsp; gl_Position = position;&nbsp; &nbsp; gl_PointSize = 64.0;&nbsp; }&nbsp; `;&nbsp; const fs = `&nbsp; precision mediump float;&nbsp; uniform sampler2D tex;&nbsp; void main() {&nbsp; &nbsp; &nbsp;gl_FragColor = texture2D(tex, gl_PointCoord.xy);&nbsp; }&nbsp; `;&nbsp; const program = twgl.createProgram(gl, [vs, fs]);&nbsp; const posLoc = gl.getAttribLocation(program, "position");&nbsp; // Create a texture to render to&nbsp; const targetTextureWidth = 128;&nbsp; const targetTextureHeight = 128;&nbsp; const targetTexture = createTexture(gl);&nbsp; {&nbsp; &nbsp; // define size and format of level 0&nbsp; &nbsp; const level = 0;&nbsp; &nbsp; const internalFormat = gl.RGBA;&nbsp; &nbsp; const border = 0;&nbsp; &nbsp; const format = gl.RGBA;&nbsp; &nbsp; const type = gl.UNSIGNED_BYTE;&nbsp; &nbsp; const data = null;&nbsp; &nbsp; gl.texImage2D(gl.TEXTURE_2D, level, internalFormat,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; targetTextureWidth, targetTextureHeight, border,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; format, type, data);&nbsp; }&nbsp; // Create and bind the framebuffer&nbsp; const fb = gl.createFramebuffer();&nbsp; gl.bindFramebuffer(gl.FRAMEBUFFER, fb);&nbsp; // attach the texture as the first color attachment&nbsp; const attachmentPoint = gl.COLOR_ATTACHMENT0;&nbsp; const level = 0;&nbsp; gl.framebufferTexture2D(gl.FRAMEBUFFER, attachmentPoint, gl.TEXTURE_2D, targetTexture, level);&nbsp; // create a depth-stencil renderbuffer&nbsp; const depthStencilBuffer = gl.createRenderbuffer();&nbsp; gl.bindRenderbuffer(gl.RENDERBUFFER, depthStencilBuffer);&nbsp; // make a depth-stencil buffer and the same size as the targetTexture&nbsp; gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_STENCIL, targetTextureWidth, targetTextureHeight);&nbsp; gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.RENDERBUFFER, depthStencilBuffer);&nbsp;&nbsp;&nbsp; function createTexture(gl, color) {&nbsp; &nbsp; const tex = gl.createTexture();&nbsp; &nbsp; gl.bindTexture(gl.TEXTURE_2D, tex);&nbsp; &nbsp; // set the filtering so we don't need mips&nbsp; &nbsp; gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);&nbsp; &nbsp; gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);&nbsp; &nbsp; gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);&nbsp; &nbsp; if (color) {&nbsp; &nbsp; &nbsp; gl.texImage2D(&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(color));&nbsp; &nbsp; }&nbsp; &nbsp; return tex;&nbsp; }&nbsp;&nbsp;&nbsp; // create a red texture and a green texture&nbsp; const redTex = createTexture(gl, [255, 0, 0, 255]);&nbsp; const greenTex = createTexture(gl, [0, 255, 0, 255]);&nbsp; gl.enable(gl.STENCIL_TEST);&nbsp; gl.useProgram(program);&nbsp; gl.clearColor(0, 0, 1, 1);&nbsp; gl.clear(gl.COLOR_BUFFER_BIT);&nbsp;&nbsp;&nbsp; gl.bindTexture(gl.TEXTURE_2D, redTex);&nbsp; gl.stencilFunc(&nbsp; &nbsp; &nbsp; &nbsp;gl.ALWAYS,&nbsp; &nbsp; // the test&nbsp; &nbsp; &nbsp; &nbsp;1,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // reference value&nbsp; &nbsp; &nbsp; &nbsp;0xFF,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// mask&nbsp; &nbsp; );&nbsp;&nbsp;&nbsp; gl.stencilOp(&nbsp; &nbsp; &nbsp;gl.KEEP,&nbsp; &nbsp; &nbsp;// what to do if the stencil test fails&nbsp; &nbsp; &nbsp;gl.KEEP,&nbsp; &nbsp; &nbsp;// what to do if the depth test fails&nbsp; &nbsp; &nbsp;gl.REPLACE,&nbsp; // what to do if both tests pass&nbsp; );&nbsp;&nbsp;&nbsp; // draw a 64x64 pixel red rect in middle&nbsp; gl.drawArrays(gl.POINTS, 0, 1);&nbsp;&nbsp;&nbsp; gl.stencilFunc(&nbsp; &nbsp; &nbsp; &nbsp;gl.EQUAL,&nbsp; &nbsp; &nbsp;// the test&nbsp; &nbsp; &nbsp; &nbsp;1,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // reference value&nbsp; &nbsp; &nbsp; &nbsp;0xFF,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// mask&nbsp; &nbsp; );&nbsp;&nbsp;&nbsp; gl.stencilOp(&nbsp; &nbsp; &nbsp;gl.KEEP,&nbsp; &nbsp; &nbsp;// what to do if the stencil test fails&nbsp; &nbsp; &nbsp;gl.KEEP,&nbsp; &nbsp; &nbsp;// what to do if the depth test fails&nbsp; &nbsp; &nbsp;gl.KEEP,&nbsp; // what to do if both tests pass&nbsp; );&nbsp; // draw a green 64x64 pixel square in the&nbsp; // upper right corner. The stencil will make&nbsp; // it not go outside the red square&nbsp; gl.vertexAttrib2f(posLoc, 0.5, 0.5);&nbsp; gl.bindTexture(gl.TEXTURE_2D, greenTex);&nbsp; gl.drawArrays(gl.POINTS, 0, 1);&nbsp; // draw the framebuffer's texture to&nbsp; // the canvas. we should see a 32x32&nbsp; // red square with the bottom right corner&nbsp; // green showing the stencil worked. That will&nbsp; // be surrounded by blue to show the texture&nbsp; // we were rendering to is larger than the&nbsp; // red square. And that will be surrounded&nbsp; // by purple since we're drawing a 64x64&nbsp; // point on a 128x128 canvas which we clear&nbsp;&nbsp; // purple.&nbsp; gl.bindFramebuffer(gl.FRAMEBUFFER, null);&nbsp; gl.clearColor(1, 0, 1, 1);&nbsp; gl.clear(gl.COLOR_BUFFER_BIT);&nbsp;&nbsp;&nbsp; gl.vertexAttrib2f(posLoc, 0.0, 0.0);&nbsp; gl.bindTexture(gl.TEXTURE_2D, targetTexture);&nbsp; gl.drawArrays(gl.POINTS, 0, 1);&nbsp;&nbsp;}main();canvas { border: 1px solid black; }<script src="https://twgljs.org/dist/4.x/twgl.min.js"></script><canvas width="128" height="128"></canvas>如果将渲染缓冲区格式更改为 DEPTH_COMPONENT16 并将附着点更改为 DEPTH_ATTACHMENT,那么您将看到绿色方块不再被模板遮盖您应该能够调用gl.getContextAttributes以检查您是否有模板缓冲区,因此如果它告诉您您没有在画布上获得模板缓冲区,您可以使用建议的解决方案。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript