gpt4 book ai didi

javascript - WebGL:使用两个着色器,第一个着色器的输出作为第二个着色器的输入,只能看到第二个着色器的输出

转载 作者:行者123 更新时间:2023-12-03 01:17:29 25 4
gpt4 key购买 nike

我怀疑这是我对绑定(bind)含义的误解,但我对我在这里做错的事情感到茫然。我已将相关代码放在帖子末尾。

我正在致力于在 GPU 上实现数值算法。具体来说,我正在关注this example来自英伟达。特别是,该算法的一部分使用迭代技术,其中一次迭代的输出用作下一次迭代的输入。在此处做出决定时,我会专门查看第 38.3.1 节。

现在,对我来说,很多都是在学习 WebGL/OpenGL/GLSL,所以我不会直接投入。此时,我只是尝试通过在一个着色器中渲染图像来直接模拟一次“迭代” (只是统一的颜色)到帧缓冲区,将该输出复制到另一个纹理,并将第二个纹理作为统一输入传递到第二个着色器。然后,第二个着色器应向图像添加高斯点,并再次渲染到与第一个着色器相同的帧缓冲区(覆盖原始着色器)。然后,第二个着色器的输出再次复制到辅助纹理,该纹理作为统一输入传递到最终着色器,将所有内容渲染到屏幕上。

我的问题:如果我运行第一个或第二个着色器,我会在屏幕上看到该阶段的预期输出。这告诉我着色器正在运行,并且我正在按预期复制内容(因为最终渲染到屏幕可以看到复制的纹理)。但是,如果我运行这两个步骤,我只能在屏幕上单独获得第二个着色器的输出(就好像第一个着色器的输入仅为 0),这告诉我,由于某种原因,第二个着色器中的统一输入没有得到我从一开始就期望什么。

所有片段着色器都使用相同的顶点着色器,该顶点着色器仅接收解决方案域的边界并传递出位置的变化 vec2。

相关代码如下。为了简洁起见,我没有包含着色器设置,但基本上我创建了程序,然后获取统一/属性位置并将它们存储在类似命名的属性中,然后激活属性。我还检查了程序是否已成功链接。

最后一点:运行时我在控制台中没有看到任何警告或错误。

帧缓冲区设置:

function initFramebuffers() {
console.log("Creating framebuffer for flow field");
flowFramebuffer = gl.createFramebuffer();
gl.bindFramebuffer(gl.FRAMEBUFFER, flowFramebuffer);
frontTex = gl.createTexture();
gl.activeTexture(gl.TEXTURE1);
gl.bindTexture(gl.TEXTURE_2D, frontTex);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, nx, ny, 0, gl.RGBA, gl.UNSIGNED_BYTE, null);
gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, frontTex, 0);
// Start by zeroing out the flow field
gl.clearColor(0.0,0.0,0.0,0.0);
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
// Now create the texture for the flow field at the last step
backTex = gl.createTexture();
gl.activeTexture(gl.TEXTURE2);
gl.bindTexture(gl.TEXTURE_2D, backTex);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, nx, ny, 0, gl.RGBA, gl.UNSIGNED_BYTE, null);
gl.copyTexImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 0, 0, nx, ny, 0); // Copy the blank flow field in to our back texture
gl.bindFramebuffer(gl.FRAMEBUFFER, null);
}

第一阶段:

function stage1() {
console.log("Stage 1...");
gl.useProgram(1Program);
gl.bindFramebuffer(gl.FRAMEBUFFER,flowFramebuffer);
gl.activeTexture(gl.TEXTURE1); // We're going to draw this result to texture unit 1
gl.viewport(0,0, nx, ny);
gl.bindBuffer(gl.ARRAY_BUFFER, solutionGrid);
gl.vertexAttribPointer(stage1program.vertexPositionAttribute, solutionGrid.itemSize, gl.FLOAT, false, 0, 0);
gl.uniform1i(stage1program.flowVelUniform, 2); // Use the texture in unit2 as the flowField uniform (unit1 is our current/updating texture)
gl.uniform1i(stage1program.inFieldUniform, 2); // We're self-advecting, so use the same texture here.
gl.uniform1f(stage1program.dtUniform, 1.0/60.0); // 60 frames per second
gl.drawArrays(gl.TRIANGLES, 0, solutionGrid.numItems); // Solve
gl.activeTexture(gl.TEXTURE2); // Now copy the framebuffer in to texture2
gl.copyTexImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 0, 0, nx, ny, 0);
gl.bindFramebuffer(gl.FRAMEBUFFER,null);
}

阶段 1 的着色器:

precision mediump float;
uniform float dt;
uniform sampler2D toAdvect; // Input dye field, varies 0 (no dye) to 1 (filled with dye)
uniform sampler2D flowField; // Flow field from the flow calculation step
varying vec2 vertexOut; // The location of the vertex [-1,1]

vec2 simToTextureSpace(vec2 vertex) {
return 0.5*(vertex+1.0);
}

void main() {
gl_FragColor = vec4(0.0,0.4,0.6,1.0);
}

第二阶段:

function stage2() {
gl.useProgram(stage2program);
gl.bindFramebuffer(gl.FRAMEBUFFER,flowFramebuffer);
gl.activeTexture(gl.TEXTURE1); // We're going to draw this result to texture unit 1
gl.viewport(0,0, nx, ny);
gl.bindBuffer(gl.ARRAY_BUFFER, solutionGrid);
gl.vertexAttribPointer(stage2program.vertexPositionAttribute, solutionGrid.itemSize, gl.FLOAT, false, 0, 0);
gl.uniform1i(stage2program.flowVelUniform, 2); // Use the texture in unit2 as the flowField uniform (unit1 is our current/updating texture)
gl.uniform1f(stage2program.dtUniform, 1.0/60.0); // 60 frames per second
gl.drawArrays(gl.TRIANGLES, 0, solutionGrid.numItems); // Solve
gl.activeTexture(gl.TEXTURE2); // Now copy out
gl.copyTexImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 0, 0, nx, ny, 0);
gl.bindFramebuffer(gl.FRAMEBUFFER,null);
}

第 2 阶段着色器:

precision mediump float;
uniform float dt;
uniform sampler2D flowField; // Flow field from the flow calculation step
varying vec2 vertexOut; // The location of the vertex [-1,1]

vec2 simToTextureSpace(vec2 vertex) {
return 0.5*(vertex+1.0);
}

void main() {
vec2 texPosition = simToTextureSpace(vertexOut);
vec4 last = texture2D(flowField, texPosition);
float radius2 = pow(vertexOut.x,2.0)+pow(vertexOut.y,2.0);
gl_FragColor = last+vec4(60.0*dt*exp(-radius2/0.001),0.0,0.0,1.0);
}

渲染到屏幕:

function drawScene() {
// console.log("Drawing scene");
gl.useProgram(visualProgram);
gl.activeTexture(gl.TEXTURE0);
gl.viewport(0,0, gl.viewportWidth, gl.viewportHeight);
gl.clearColor(0.0,0.0,1.0,1.0); // Clear to blue
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
gl.bindBuffer(gl.ARRAY_BUFFER, solutionGrid); // Just reuse the coordinates from the fluid position buffer
gl.vertexAttribPointer(visualProgram.vertexPositionAttribute, solutionGrid.itemSize, gl.FLOAT, false, 0, 0);
gl.uniform1i(visualProgram.inFieldUniform, 2);
gl.drawArrays(gl.TRIANGLES, 0, solutionGrid.numItems);
}

渲染到屏幕着色器:

precision mediump float;
uniform sampler2D inField; // field to draw
varying vec2 vertexOut; // The location of the vertex [-1,1]

vec2 simToTextureSpace(vec2 vertex) {
return 0.5*(vertex+1.0);
}

void main() {
vec2 texPosition = simToTextureSpace(vertexOut);
vec4 drawField = texture2D(inField,texPosition);

gl_FragColor = drawField;
}

调用顺序:

// Setup shaders, initFramebuffers(), etc
//console.log("Drawing...");
stage1();
stage2();
drawScene();

最佳答案

事实证明,我在某个地方犯了一个错误,在引用统一输入时使用了略有不同的对象名称。即E

myObject.uniformVal

对比

myObject.uniformVel

这肯定是完全巧合的,但是所显示的错误并没有导致抛出实际的错误。它现在正在工作,所以如果其他人遇到类似的问题 - 检查你的参数名称:)

关于javascript - WebGL:使用两个着色器,第一个着色器的输出作为第二个着色器的输入,只能看到第二个着色器的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51936543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com