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

12 lines
200 B
Plaintext
Raw Normal View History

2023-11-11 13:56:12 +01:00
import Common;
struct DispatchParams
{
uint3 numThreadGroups;
uint pad0;
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;