blob: 703fd77ec75cacd235a3e007aba2c722f70d6f4e [file] [log] [blame]
Ben Clayton37035222021-12-08 19:54:08 +00001TextureCubeArray arg_0 : register(t0, space1);
2SamplerState arg_1 : register(s1, space1);
3
4void textureGather_43025d() {
5 float4 res = arg_0.Gather(arg_1, float4(0.0f, 0.0f, 0.0f, float(1)));
6}
7
8struct tint_symbol {
9 float4 value : SV_Position;
10};
11
12float4 vertex_main_inner() {
13 textureGather_43025d();
Ben Claytone9f8b092022-06-01 13:14:39 +000014 return (0.0f).xxxx;
Ben Clayton37035222021-12-08 19:54:08 +000015}
16
17tint_symbol vertex_main() {
18 const float4 inner_result = vertex_main_inner();
19 tint_symbol wrapper_result = (tint_symbol)0;
20 wrapper_result.value = inner_result;
21 return wrapper_result;
22}
23
24void fragment_main() {
25 textureGather_43025d();
26 return;
27}
28
29[numthreads(1, 1, 1)]
30void compute_main() {
31 textureGather_43025d();
32 return;
33}