Implement Gaussian anti-aliasing

This commit is contained in:
2025-09-23 15:36:08 +01:00
parent 75b646dd44
commit 61cfddd75c
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