Conversation

Replying to and
Yeah. In Claybook we also used u8. Implicit normals need the extra precision. High quality normals were one of the reasons we needed 32x sub-voxel precision (thus max step distance was +-4 voxels). But it wasn't a problem with our multilevel trace algorithm.
Replying to and
So you used 8x8x8 tiles in volume texture, each representing 7x7x7 area (with single side borders)? How do you mipmap this? This is a now pow2 tile size. 9x9x9 tiles that represent 8x8x8 regions align perfectly to upper/lower mip level tiles.
1
Replying to and
Yep texels are duplicated on all shared faces. Not sure what you mean about mip maps, bricks form an octree for level of detail, each octree node is 7 texels long, octree node corners line up with texel centres at all levels (so need 8^3 storage for each).
1
2
Show replies