blob: 21d576122b8f0b93bc17b45bd09fbcb0cb675dca [file] [log] [blame]
Ben Clayton37035222021-12-08 19:54:08 +00001Texture2D<float4> t : register(t0, space1);
2SamplerState s : register(s1, space1);
3
4void main() {
Ben Claytone9f8b092022-06-01 13:14:39 +00005 float4 res = t.GatherRed(s, (0.0f).xx);
Ben Clayton37035222021-12-08 19:54:08 +00006 return;
7}