stackgl / shader-school

:mortar_board: A workshopper for GLSL shaders and graphics programming
Other
4.28k stars 254 forks source link

Fix buffer initialization for wave equation exercise #173

Open aspurdy opened 6 years ago

aspurdy commented 6 years ago

It looks like exercise gpgpu-3 requires a total of three buffers (one front and two back for the two previous states), but currently only two buffers are being created. I think the original author intended to use the numBuffers variable, which is set to 3, but accidently hardcoded 2 in the createStateBuffers call.

numBuffers was also declared but unused in the heat equation example, so I also updated that for consistency.