-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.mjs
58 lines (51 loc) · 1.22 KB
/
index.mjs
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
49
50
51
52
53
54
55
56
57
58
import { cube } from '../lib/glea/geometry.mjs';
import { frag, vert } from './shaders.mjs';
import GLea from '../lib/glea/glea.mjs';
const Color = {
red: [1, 0, 0],
green: [0, 1, 0],
blue: [0, 0, 1],
yellow: [1, 1, 0],
pink: [1,0,1],
cyan: [0, 1, 1],
white: [1, 1, 1]
};
const { red, green, blue, yellow, pink, cyan } = Color;
const glea = new GLea({
shaders: [
GLea.vertexShader(vert),
GLea.fragmentShader(frag)
],
buffers: {
position: GLea.buffer(3, cube(0.25)),
color: GLea.buffer(3, [
...Array(6).fill(red),
...Array(6).fill(green),
...Array(6).fill(blue),
...Array(6).fill(pink),
...Array(6).fill(cyan),
...Array(6).fill(yellow)
].flat())
}
}).create();
window.addEventListener('resize', () => {
glea.resize();
});
function loop(time) {
const { gl } = glea;
const { sin, cos } = Math;
glea.clear();
glea.uni('width', glea.width);
glea.uni('height', glea.height);
glea.uni('time', time * .01);
gl.drawArrays(gl.TRIANGLES, 0, 36);
requestAnimationFrame(loop);
}
function setup() {
const { gl } = glea;
gl.clearColor(1/6, 1/6, 1/6, 1);
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
gl.enable(gl.DEPTH_TEST)
loop(0);
}
setup();