mirror of
https://github.com/Kbz-8/Pulse.git
synced 2026-01-10 15:03:34 +00:00
8 lines
175 B
HLSL
8 lines
175 B
HLSL
RWStructuredBuffer<uint> write_ssbo : register(u0);
|
|
RWTexture2D<float4> write_texture : register(u1);
|
|
|
|
[numthreads(16, 16, 1)]
|
|
void main(uint3 grid : SV_DispatchThreadID)
|
|
{
|
|
}
|