Rework website with bulma instead of bootstrap #6

Manually merged
tlater merged 43 commits from tlater/bulma2 into master 2022-08-14 00:26:49 +01:00
Showing only changes of commit 81e7bd98ff - Show all commits

View file

@ -193,8 +193,6 @@ class Renderer {
this.buffers.positions === undefined ||
this.buffers.normals === undefined ||
this.buffers.fft === undefined
// this.buffers.velocitiesRead === undefined ||
// this.buffers.velocitiesWrite === undefined
) {
throw new Error("failed to create buffers before rendering");
}
@ -226,7 +224,6 @@ class Renderer {
// Update fft
this.analyser.getByteFrequencyData(this.analyserData);
// this.analyserData.fill(255);
gl.bindBuffer(gl.ARRAY_BUFFER, this.buffers.fft);
gl.bufferData(gl.ARRAY_BUFFER, this.analyserData, gl.STREAM_DRAW);