Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package kha;
/*
FastFloat uses 32 bit floats wherever that is possible.
But JavaScript in particular only supports 64 bit floats.
Therefore when using FastFloat you will have different
precision on different targets and therefore it is
strongly advised to only use it where that does not
matter (typically graphics code, avoid it in gameplay
code at all costs).
*/
#if cpp
typedef FastFloat = cpp.Float32;
#elseif hl
typedef FastFloat = hl.F32;
#elseif java
typedef FastFloat = Single;
#else
typedef FastFloat = Float;
#end