1SKIP: FAILED
2
3#version 310 es
4precision mediump float;
5
6uniform highp sampler2DArray arg_0;
7
8
9void textureSampleCompareLevel_1116ed() {
10  float res = texture(arg_0, vec3(0.0f, 0.0f, float(1)), 1.0f);
11}
12
13struct tint_symbol {
14  vec4 value;
15};
16
17vec4 vertex_main_inner() {
18  textureSampleCompareLevel_1116ed();
19  return vec4(0.0f, 0.0f, 0.0f, 0.0f);
20}
21
22tint_symbol vertex_main() {
23  vec4 inner_result = vertex_main_inner();
24  tint_symbol wrapper_result = tint_symbol(vec4(0.0f, 0.0f, 0.0f, 0.0f));
25  wrapper_result.value = inner_result;
26  return wrapper_result;
27}
28void main() {
29  tint_symbol outputs;
30  outputs = vertex_main();
31  gl_Position = outputs.value;
32  gl_Position.y = -gl_Position.y;
33}
34
35
36Error parsing GLSL shader:
37ERROR: 0:8: 'texture' : no matching overloaded function found 
38ERROR: 0:8: '' : compilation terminated 
39ERROR: 2 compilation errors.  No code generated.
40
41
42
43#version 310 es
44precision mediump float;
45
46uniform highp sampler2DArray arg_0;
47
48
49void textureSampleCompareLevel_1116ed() {
50  float res = texture(arg_0, vec3(0.0f, 0.0f, float(1)), 1.0f);
51}
52
53struct tint_symbol {
54  vec4 value;
55};
56
57void fragment_main() {
58  textureSampleCompareLevel_1116ed();
59  return;
60}
61void main() {
62  fragment_main();
63}
64
65
66Error parsing GLSL shader:
67ERROR: 0:8: '=' :  cannot convert from ' global highp 4-component vector of float' to ' temp mediump float'
68ERROR: 0:8: '' : compilation terminated 
69ERROR: 2 compilation errors.  No code generated.
70
71
72
73#version 310 es
74precision mediump float;
75
76uniform highp sampler2DArray arg_0;
77
78
79void textureSampleCompareLevel_1116ed() {
80  float res = texture(arg_0, vec3(0.0f, 0.0f, float(1)), 1.0f);
81}
82
83struct tint_symbol {
84  vec4 value;
85};
86
87layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
88void compute_main() {
89  textureSampleCompareLevel_1116ed();
90  return;
91}
92void main() {
93  compute_main();
94}
95
96
97Error parsing GLSL shader:
98ERROR: 0:8: '=' :  cannot convert from ' global highp 4-component vector of float' to ' temp mediump float'
99ERROR: 0:8: '' : compilation terminated 
100ERROR: 2 compilation errors.  No code generated.
101
102
103
104