I am using Frame Capture Debugging Tools works well for vertex shader functions, but I can't debug the compute function, the debug button is gray and show me Unsupported Post vertex transform data.
Accepted Reply
How to debug a void vertex function?
Replies
How to debug a void vertex function?
-
—
MobileTen
-
—
Chengliang
Add a CommentDid the shader complete calling all of the routines on another thread?
For Example:
vertex void computeNormal(uint vertexID [[vertex_id]], ... ) { ... }
I can't debug such as this function, because it don't return any vertex output just a void function.