Increase brickmap parameters
This commit is contained in:
parent
a91b48bf46
commit
404c7875bf
|
@ -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...");
|
||||||
|
|
Loading…
Reference in New Issue