Implement Gaussian anti-aliasing

This commit is contained in:
Camden Dixie O'Brien
2025-09-21 16:31:34 +01:00
parent 172956ae46
commit 89597c9b01
3 changed files with 49 additions and 16 deletions

View File

@@ -10,8 +10,7 @@ typedef struct {
} rng_t;
rng_t rng_init(unsigned seed);
double rng_double(rng_t *rng);
vec3_t rng_vec3(rng_t *rng);
vec3_t rng_gaussian_xy(rng_t *rng, double stddev);
#endif