sampling : comment on state use

This commit is contained in:
Jan Boon 2026-02-07 05:03:21 +00:00
parent 15ade86a75
commit a0323a989d
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ struct blue_noise_rng {
seed = hash(s);
const int n = (1 << bit_depth) - 1;
states.resize(n);
states.resize(n); // at 16-bit depth, this uses 128KB of state
reset();
}