forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClearPass.js
More file actions
44 lines (27 loc) · 869 Bytes
/
ClearPass.js
File metadata and controls
44 lines (27 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
( function () {
class ClearPass extends THREE.Pass {
constructor( clearColor, clearAlpha ) {
super();
this.needsSwap = false;
this.clearColor = clearColor !== undefined ? clearColor : 0x000000;
this.clearAlpha = clearAlpha !== undefined ? clearAlpha : 0;
this._oldClearColor = new THREE.Color();
}
render( renderer, writeBuffer, readBuffer
/*, deltaTime, maskActive */
) {
let oldClearAlpha;
if ( this.clearColor ) {
renderer.getClearColor( this._oldClearColor );
oldClearAlpha = renderer.getClearAlpha();
renderer.setClearColor( this.clearColor, this.clearAlpha );
}
renderer.setRenderTarget( this.renderToScreen ? null : readBuffer );
renderer.clear();
if ( this.clearColor ) {
renderer.setClearColor( this._oldClearColor, oldClearAlpha );
}
}
}
THREE.ClearPass = ClearPass;
} )();