Project

General

Profile

Download (364 Bytes) Statistics
| Branch: | Revision:

library / build.gradle @ d61fd515

# Date Author Comment
d61fd515 03/05/2017 11:46 PM Leszek Koltunski

1. Move to Gradle 25.0.0
2. Bugfix in DistortedNode

39b80df0 10/09/2016 10:42 PM Leszek Koltunski

Shades of the WAVE effect (almost!) working.

20af7b69 08/24/2016 09:31 PM Leszek Koltunski

Correct an important bug in the vertex shader.

b = 1/a if a!=0, 1 otherwise was incorrectly computed as b = 1.0 / (a+1.0-sign(a)). This, when 0<a<2^-24, suffers from 'round-off error': then a+1.0 = 1.0 (sic!) thus b = 1/0 !.

Correct way: b = 1.0 / ( a - (sign(a)-1.0) )

1b096d30 06/07/2016 11:03 PM Leszek Koltunski

New app: PlainMonaLisa (Mona Lisa rendered on plain SurfaceView)

6a06a912 05/25/2016 07:45 PM Leszek Koltunski

Initial commit