You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
391 B
20 lines
391 B
4 months ago
|
struct sb_t
|
||
|
{
|
||
|
float4 color;
|
||
|
uint2 threadId;
|
||
|
};
|
||
|
|
||
|
RWTexture2D<float4> outtx;
|
||
|
ConsumeStructuredBuffer<sb_t> csb : register(u1);
|
||
|
RWStructuredBuffer<float4> rwsb;
|
||
|
|
||
|
[numthreads(1, 1, 1)]
|
||
|
void main(uint3 nThreadId : SV_DispatchThreadID)
|
||
|
{
|
||
|
sb_t data = csb.Consume();
|
||
|
float2 coord = float2(data.threadId.xy);
|
||
|
outtx[coord] = data.color;
|
||
|
|
||
|
rwsb[coord.x] = rwsb.Load(coord.y);
|
||
|
}
|