githole / Live-Coder

Live Coder is a realtime GLSL editor/viewer mainly for demosceners.
http://kagamin.net/hole/lc/index.htm
135 stars 16 forks source link

Explicit float literals and calls #3

Closed fritschy closed 11 years ago

fritschy commented 11 years ago

GCC emitted some double code. All double literals are now float, as well as sin/cos in fft() are now sinf/cosf (or wrapped with an #ifdef _GNU_SOURCE sincosf).

githole commented 11 years ago

Thank you!