ComputeMarchingCubes icon indicating copy to clipboard operation
ComputeMarchingCubes copied to clipboard

[Unity] GPU-optimized marching cubes isosurface reconstruction

Results 3 ComputeMarchingCubes issues
Sort by recently updated
recently updated
newest added

Use `StructuredBuffer` for Vertex Buffer and IndexBuffer. In my environment, this change doesn't make any performance improvement or regession.

Using `static const uint2[]` would be better for precalculated `TriangleTable`.

I've tried a build on Android using both Vulkan and OpenGLES3. Vulkan performance is very low when moving the slider (when the compute shader is running). OpenGLES3 is very smooth,...

question