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...");
let brickgrid_dims = glam::uvec3(64, 64, 64);
let brickmap_manager = super::brickmap::BrickmapManager::new(
context,
brickgrid_dims,
usize::pow(32, 3),
u32::pow(2, 24),
256,
512,
glam::uvec3(512, 64, 512),
usize::pow(64, 3),
u32::pow(2, 26),
4096,
8192,
);
log::info!("Creating compute pipelines...");