stackgl / shader-school

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

#25-GPGPU-2 : Heat eqn : Fixes issue #71 (kdamping, not kambient) #92

Closed mdda closed 9 years ago

mdda commented 10 years ago

As in the original Issue #71, the exercise text :

The diffusion constant and damping will be sent in the parameters 
kdiffuse and kambient respectively.

didnt accurately reflect that one needs to add :

uniform float kdiffuse, kdamping;

Fixed in the attached. Martin :-)

mikolalysenko commented 9 years ago

Thanks