I wish to create a complex pixel shader effect which cannot be compiled as a single shader effect. So, I'm planning to break down the complex shader effects into multiple shader effects and chain these shader effect files sequentially.

Is this somehow possible?

link|improve this question

44% accept rate
feedback

1 Answer

Yes. The keywords you are looking for are multi-pass shaders. For chaining, you'll want to look up ping-pong rendering. You may also find using multiple techniques (HLSL parlance) useful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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