Currently browsing tag

cuda

Cuda Voxelizer v0.4: OBJ Support!

I’ve found a bit of time to work on my CUDA polygon mesh voxelizer, a command line tool to turn a polygon mesh into a voxel grid representation. The tool seems to be used by some people, always nice to see! Support for outputting to an .obj point cloud, which …

cuda2GLCore: CUDA to OpenGL textures

I made a new implementation of the Cuda2GL sample provided in the CUDA Samples by Nvidia. The sample shows how to generate a texture in CUDA and use it in an OpenGL context without copying it to main memory. The original implementation uses Glut and OpenGL immediate mode (Compatibility profile) to draw the resulting texture. The sample …