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.
13 lines
277 B
13 lines
277 B
4 months ago
|
RWTexture2D<uint> Values;
|
||
|
|
||
|
struct InputStruct {
|
||
|
float4 Position : SV_POSITION;
|
||
|
};
|
||
|
|
||
|
[earlydepthstencil]
|
||
|
uint main(InputStruct input) : SV_Target {
|
||
|
uint oldVal;
|
||
|
InterlockedExchange(Values[uint2(input.Position.x, input.Position.y)], 1.0, oldVal);
|
||
|
return oldVal;
|
||
|
}
|