diff options
author | bonmas14 <bonmas14@gmail.com> | 2025-08-04 13:33:47 +0000 |
---|---|---|
committer | bonmas14 <bonmas14@gmail.com> | 2025-08-04 13:33:47 +0000 |
commit | ed1cab483e49e29396178a33dea51773aa770855 (patch) | |
tree | 78102102f7f7d07be0e6bef4b10ef69576f0c23e /README.md | |
parent | 471b539bdbf658ff7924b7500f89fd237df8be9b (diff) | |
download | ungrateful-ed1cab483e49e29396178a33dea51773aa770855.tar.gz ungrateful-ed1cab483e49e29396178a33dea51773aa770855.zip |
Math, not tested
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -13,13 +13,26 @@ Only core features of C99 were used: - long long; - restrict keyword; +# Compile flags + +``` +# clang gcc +-std=c99 -lm -ffast-math + +# cl (i guess right now) + +/std:c99 /fp:fast +``` + # Ungrateful +Note: we need to manipulate register of SSE so we disable subnormals (Flush to zero). + Types, Strings, basic memory allocators (platform specific), and so on. Features: + Memory allocation; + Strings; -- easing; ++ easing; - splines (qubic); - vecs/ivec; - matrix; |