Thanks, though I had got that far (few subtle differences, but basically the same). Problem is I really need the alpha from the first scene to do the merge (Scene 1 is rendered additively, then only copied into scene 2 when above a threshold - I am in effect doing a visual intersection operation. I can think of other approaches, but this seemed to be the simplest, at least when I started!), and its not available for some reason - it appears to be fixed at 1, even though I have explicitly set it otherwise. Any ideas? Its quite hard to follow all the state changes involved by reading the engine's code! Edit: Ok, it appears that calling scene.clearColor = new BABYLON.Color4(0, 0, 0, 0);does not in fact result in the alpha buffer being set to zero, but leaves it at one, hence my above problem. No idea why - I have traced through the engine and the call sequence looks correct. All I know is that if I set it to 0 using a shader that works, and my code does what I want it to! So, problem solved for me, but I expect this is indicative of a bug somewhere. Further edit: Bug was staring me in the face - you use the line: this._gl.clearColor(color.r, color.g, color.b, color.a || 1.0);in babylon.engine.js. (0.0 || 1.0) evaluates to 1.0, whilst (1e-12 || 1.0) evaluates to 1e-12, hence I can fix my problem with scene.clearColor = new BABYLON.Color4(0, 0, 0, 1e-12);(1e-12 rounds down to 0 when dumped in an 8 bit uint) This is a bug that needs fixing, but then that is easy enough - just check if color.a is a number or not, rather than relying on the weird behaviour of || !