Increase brickmap parameters

This commit is contained in:
Jarrod Doyle 2023-07-28 14:28:28 +01:00
parent a91b48bf46
commit 404c7875bf
Signed by: Jayrude
GPG Key ID: 38B57B16E7C0ADF7
1 changed files with 5 additions and 6 deletions

View File

@ -62,14 +62,13 @@ impl VoxelRenderer {
}); });
log::info!("Creating brickmap manager..."); log::info!("Creating brickmap manager...");
let brickgrid_dims = glam::uvec3(64, 64, 64);
let brickmap_manager = super::brickmap::BrickmapManager::new( let brickmap_manager = super::brickmap::BrickmapManager::new(
context, context,
brickgrid_dims, glam::uvec3(512, 64, 512),
usize::pow(32, 3), usize::pow(64, 3),
u32::pow(2, 24), u32::pow(2, 26),
256, 4096,
512, 8192,
); );
log::info!("Creating compute pipelines..."); log::info!("Creating compute pipelines...");