netpoet coop and 64kode

This commit is contained in:
2026-04-19 00:41:25 +02:00
parent 8d0ab5b7cc
commit 227ea3bf05
367 changed files with 364128 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
Texture2D<float4> in0 : register(t0);
RWTexture2D<uint4> o0 : register(u1);
RWTexture2D<uint4> o1 : register(u2);
[numthreads(16, 16, 1)]
void main(uint3 id : SV_DispatchThreadID)
{
float4 i = in0[id.xy];
o0[id.xy] = float4(i.bgra) * 255;
o1[id.xy] = float4(i.a, i.a, i.a, 1) * 255;
}