Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my current project, I want to use multiple shader in one render pass. I thought this could be achieved by rendering only the last pass to the screen and all the previous passes to a renderTarget and then passing this renderTarget as a texture to the next shader.

The problem in my case seems to be in my render loop in this following code:

// something is going wrong here:    
viewer.renderer.render(viewer.scene, viewer.camera, viewer.renderTarget);

viewer.uniforms.tDiffuse.value = viewer.renderTarget;
viewer.uniforms.fragmentShader = viewer.fragment2;

viewer.renderer.render(viewer.scene, viewer.camera);

In order to make things more clear, I built this jsFiddle.

Any ideas on what I am doing wrong?

share|improve this question

2 Answers

Simplest way: Render all passes to separate textures and then applying them to full-screen quad that will blend them with shader. Or on separate full-screen quads and set Blending to add. also you can use only blending and multiply renders of same objects with different shading methods(read this) it will save you GPU memory and Texture Fill Rate if you need only simple composing.

share|improve this answer
up vote 0 down vote accepted

Solved it by building the shader I need from chunks (like this: https://github.com/mrdoob/three.js/blob/master/src/renderers/WebGLShaders.js)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.