blob: 8a898b299268afb9d81dc362b04da74f53d1d96a (
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(groupId.xy, 0);
}
|