Files
Seele/res/shaders/test.slang
T

12 lines
185 B
Plaintext
Raw Normal View History

2023-10-07 19:29:53 +02:00
struct Payload
{
uint num;
};
[shader("mesh")]
[numthreads(32, 1, 1)]
[outputtopology("triangle")]
void taskMain(uint threadID: SV_DispatchThreadID)
{
SetOutputMeshCounts(64, 126);
}