Marching Cubes generating holes in mesh
Marching Cubes generating holes in mesh
Marching Cubes generating holes in mesh
I figured out your problem: you are rendering to the same buffer that you’re sourcing your vertex data. glBindVertexArray(vaoPass2); I think you meant vaoPass1 From the spec: Buffers should not be bound or in use for both transform feedback and other purposes in the GL. Specifically, if a buffer object is simultaneously bound to a … Read more