12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /**
- * @author alteredq / http://alteredqualia.com/
- */
- THREE.MaskPass = function ( scene, camera ) {
- THREE.Pass.call( this );
- this.scene = scene;
- this.camera = camera;
- this.clear = true;
- this.needsSwap = false;
- this.inverse = false;
- };
- THREE.MaskPass.prototype = Object.create( THREE.Pass.prototype );
- THREE.MaskPass.prototype = {
- constructor: THREE.MaskPass,
- render: function ( renderer, writeBuffer, readBuffer, delta, maskActive ) {
- var context = renderer.context;
- // don't update color or depth
- context.colorMask( false, false, false, false );
- context.depthMask( false );
- // set up stencil
- var writeValue, clearValue;
- if ( this.inverse ) {
- writeValue = 0;
- clearValue = 1;
- } else {
- writeValue = 1;
- clearValue = 0;
- }
- context.enable( context.STENCIL_TEST );
- context.stencilOp( context.REPLACE, context.REPLACE, context.REPLACE );
- context.stencilFunc( context.ALWAYS, writeValue, 0xffffffff );
- context.clearStencil( clearValue );
- // draw into the stencil buffer
- renderer.render( this.scene, this.camera, readBuffer, this.clear );
- renderer.render( this.scene, this.camera, writeBuffer, this.clear );
- // re-enable update of color and depth
- context.colorMask( true, true, true, true );
- context.depthMask( true );
- // only render where stencil is set to 1
- context.stencilFunc( context.EQUAL, 1, 0xffffffff ); // draw if == 1
- context.stencilOp( context.KEEP, context.KEEP, context.KEEP );
- }
- };
- THREE.ClearMaskPass = function () {
- THREE.Pass.call( this );
- this.needsSwap = false;
- };
- THREE.ClearMaskPass.prototype = Object.create( THREE.Pass.prototype );
- THREE.ClearMaskPass.prototype = {
- constructor: THREE.ClearMaskPass,
- render: function ( renderer, writeBuffer, readBuffer, delta, maskActive ) {
- var context = renderer.context;
- context.disable( context.STENCIL_TEST );
- }
- };
|