-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathShaderPass.js
48 lines (44 loc) · 1.2 KB
/
ShaderPass.js
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
45
46
47
48
import {
OrthographicCamera,
Scene,
Mesh,
PlaneBufferGeometry,
} from "../third_party/three.module.js";
import { getFBO } from "../js/FBO.js";
class ShaderPass {
constructor(renderer, shader, options = {}) {
this.renderer = renderer;
this.shader = shader;
this.orthoScene = new Scene();
this.fbo = getFBO(1, 1, options);
this.orthoCamera = new OrthographicCamera(
1 / -2,
1 / 2,
1 / 2,
1 / -2,
0.00001,
1000
);
this.orthoQuad = new Mesh(new PlaneBufferGeometry(1, 1), this.shader);
this.orthoQuad.scale.set(1, 1, 1);
this.orthoScene.add(this.orthoQuad);
this.texture = this.fbo.texture;
}
render(final) {
if (!final) {
this.renderer.setRenderTarget(this.fbo);
}
this.renderer.render(this.orthoScene, this.orthoCamera);
this.renderer.setRenderTarget(null);
}
setSize(width, height) {
this.fbo.setSize(width, height);
this.orthoQuad.scale.set(width, height, 1);
this.orthoCamera.left = -width / 2;
this.orthoCamera.right = width / 2;
this.orthoCamera.top = height / 2;
this.orthoCamera.bottom = -height / 2;
this.orthoCamera.updateProjectionMatrix();
}
}
export { ShaderPass };