blob: 1d8293937d9b5d65c654b373d6941d2121c8da60 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//TEST:CROSS_COMPILE: -profile lib_6_3 -entry main -stage compute -target spirv-assembly
[[vk::binding(0, 0)]]
Texture2DMS tex : register(t1);
[numthreads(4, 4, 1)]
void main(uint3 groupId : SV_GroupID)
{
tex.Load(int2(groupId.xy), 0);
}
|