Skip to content
Advertisement

Multiple passes render to separate textures

I am using the render to texture method for creating a multi shader program. And for various reasons. I need to first render a model to a texture with one shader program. Then render it again with a different shader program into a different texture. Then I have one final post processing shader that combines the results of the two. My problem is it seems that the second texture is overwriting the first texture. Is there a way to move textures? Or to render to a different texture without overwriting it. (Thanks for any help in advance!)

I have attached my code for reference:

JavaScript

Advertisement

Answer

Are you checking for errors in the JavaScript console?

LUMINANCE_ALPHA is not guaranteed to be renderable

Being able to render to gl.LUMINANCE_ALPHA is not a format that is guaranteed to work. In WebGL 1 only gl.RGBA/gl.UNSIGNED_BYTE is guaranteed to work. All other format/type combos are not. You can check by calling

JavaScript

Though given rendering to LUMINANCE_ALPHA is commonly not supported you might want to just avoid it. It’s not supported on MacOS for sure.

gl.viewportWidth, gl.viewportHeight do not exist

gl.viewportWidth and gl.viewportHeight are not a thing, they don’t exist. They are not part of any spec. One of the first WebGL tutorials (no longer on the net) made those up and confused thousands of devs.

the code never turns on buffers on attributes

You need to call gl.enableVertexAttribArray for each attribute that you want get its values from a buffer. Or to put it another way, for each call to gl.vertexAttribPointer you also need to call gl.enableVertexAttribArray

sampler uniforms are set to texture units not textures

This code

JavaScript

makes no sense. Textures are bound to an array of texture units. You select the unit with gl.activeTexture and then bind the texture to that unit with gl.bindTexture. You then tell the shader which unit you assigned the texture with gl.uniform1i. See this

JavaScript

Other comments

  • it’s pretty much never important to unbind a texture

  • it’s not common to create and delete resources while rendering

    creating and deleting textures and framebuffers is slow. It would be more common to create them at init time and just use them at render time.

  • Try to post a runnable snippet in the future

  • not sure what math library you’re using but it looks kind of like gl-matrix? Many calls to mat4.xxx do not match the current API for gl-matrix but without the source of your matrix library it’s hard to tell if those calls are correct.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement