LittlestTokyo - 4 spp
Random Scrambling
Heitz et al. [2019]
Random Scrambling
Heitz et al. [2019]
3D model by Glen Fox
function screen_space_sampler(i, j, index, dimension)
{
// Fetch keys associated with pixel (i,j)
scramble = scrambling_keys(i,j)
sort = sorting_keys(i,j)
// XOR the index
index = index ^ sort
sample = sobol_owen(index, dimension)
// XOR the sample
sample = sample ^ scramble
return sample
}