Files
Seele/res/shaders/lib/DispatchParams.slang
T

12 lines
206 B
Plaintext
Raw Normal View History

2023-11-11 13:56:12 +01:00
import Common;
struct DispatchParams
{
uint3 numThreadGroups;
uint pad0;
2024-11-02 22:19:08 +01:00
uint3 numThreads;
uint pad1;
2024-10-01 16:56:04 +02:00
RWStructuredBuffer<Frustum> frustums;
2024-09-16 13:00:53 +02:00
};
2024-10-01 16:56:04 +02:00
ParameterBlock<DispatchParams> pDispatchParams;