On Tue, Dec 20, 2011 at 9:38 AM, Pekka Paalanen wrote:
> fade_output() is strange in that it manufactures a wlsc_surface object
> by hand, and then calls wlsc_surface_draw() on it.
>
> Valgrind complained, that wlsc_surface_draw() accesses uninitialised
> data: wlsc_surface::alpha. fade_output() f
fade_output() is strange in that it manufactures a wlsc_surface object
by hand, and then calls wlsc_surface_draw() on it.
Valgrind complained, that wlsc_surface_draw() accesses uninitialised
data: wlsc_surface::alpha. fade_output() forgets to set it.
Initialise surface.alpha in fade_output(). Spe