add fp16 with fp32 fallback

This commit is contained in:
Yggdrasil75
2026-01-21 10:13:39 -05:00
parent ff3e4711db
commit dc514cfe31
2 changed files with 10 additions and 79 deletions

View File

@@ -23,9 +23,9 @@
struct defaults {
int outWidth = 512;
int outHeight = 512;
int gridWidth = 128;
int gridHeight = 128;
int gridDepth = 128;
int gridWidth = 512;
int gridHeight = 512;
int gridDepth = 512;
float fps = 30.0f;
PNoise2 noise = PNoise2(42);
};