2021-06-18 21:15:25 +00:00
|
|
|
cbuffer cbuffer_constants : register(b0, space0) {
|
|
|
|
uint4 constants[1];
|
2021-06-10 18:49:14 +00:00
|
|
|
};
|
2021-06-16 09:19:36 +00:00
|
|
|
Texture2DArray<float4> myTexture : register(t1, space0);
|
2021-06-10 18:49:14 +00:00
|
|
|
|
|
|
|
RWByteAddressBuffer result : register(u3, space0);
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
struct tint_symbol_1 {
|
|
|
|
uint3 GlobalInvocationID : SV_DispatchThreadID;
|
|
|
|
};
|
2021-06-10 18:49:14 +00:00
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
void main_inner(uint3 GlobalInvocationID) {
|
2021-06-10 18:49:14 +00:00
|
|
|
uint flatIndex = ((((2u * 2u) * GlobalInvocationID.z) + (2u * GlobalInvocationID.y)) + GlobalInvocationID.x);
|
|
|
|
flatIndex = (flatIndex * 1u);
|
2021-07-28 16:31:36 +00:00
|
|
|
float4 texel = myTexture.Load(int4(int3(int2(GlobalInvocationID.xy), 0), 0));
|
2021-06-10 18:49:14 +00:00
|
|
|
{
|
2021-07-08 21:23:33 +00:00
|
|
|
for(uint i = 0u; (i < 1u); i = (i + 1u)) {
|
2021-06-10 18:49:14 +00:00
|
|
|
result.Store((4u * (flatIndex + i)), asuint(texel.r));
|
|
|
|
}
|
|
|
|
}
|
2021-08-04 22:15:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void main(tint_symbol_1 tint_symbol) {
|
|
|
|
main_inner(tint_symbol.GlobalInvocationID);
|
2021-06-10 18:49:14 +00:00
|
|
|
return;
|
|
|
|
}
|