Metal emulate geometry shaders using compute shaders

后端 未结 2 1370
遇见更好的自我
遇见更好的自我 2021-02-09 09:07

I\'m trying to implement voxel cone tracing in Metal. One of the steps in the algorithm is to voxelize the geometry using a geometry shader. Metal does not have geometry shaders

2条回答
  •  灰色年华
    2021-02-09 10:10

    Unfortunately there is no way to do this (and other things) in Metal, without going into unneeded complications. The API lacks critical features that are common in Vulkan, OpenGL and DirectX...

提交回复
热议问题