You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove unsafe vec optimization (#234)
The optimization tried to remove a useless call to vec, e.g. replace
vec2(v.xy) with v.xy This is not safe when the argument is not a vec2,
e.g. it's an ivec2.
Fixes#233
Improve tests & update version to 1.3.1 (#166)
- Tests now ignore the version change (to avoid regenerating a bunch of golden files)
- Fix shader compilation warning (int vs float)
Version 1.2 (#125)
Update version to 1.2 and update the README file
Also, make the dependency on FSharp.Core explicit, because it seems to be needed in Visual Studio.