blob: c7b86eded46f9ad386cd2c379304076c77c210e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
# Generic invalid cases that don't fall into other categories
group c_cast "C-style casts"
case float_0
expect compile_fail
version 300 es
both ""
#version 300 es
precision highp float;
${DECLARATIONS}
void main ()
{
float a = 0.0;
float b = (float)a;
${POSITION_FRAG_COLOR} = vec4(0.0);
}
""
end
case float_1
expect compile_fail
version 300 es
both ""
#version 300 es
precision highp float;
${DECLARATIONS}
void main ()
{
int a = 0;
float b = (float)a;
${POSITION_FRAG_COLOR} = vec4(b);
}
""
end
case float_2
expect compile_fail
version 300 es
both ""
#version 300 es
${DECLARATIONS}
void main ()
{
highp float a = 0.0;
mediump float b = (mediump float)a;
${POSITION_FRAG_COLOR} = vec4(0.0);
}
""
end
case int
expect compile_fail
version 300 es
both ""
#version 300 es
precision highp float;
${DECLARATIONS}
void main ()
{
float a = 0.0;
int b = (int)a;
${POSITION_FRAG_COLOR} = vec4(0.0);
}
""
end
case uint
expect compile_fail
version 300 es
both ""
#version 300 es
precision highp float;
${DECLARATIONS}
void main ()
{
float a = 0.0;
uint b = (uint)a;
${POSITION_FRAG_COLOR} = vec4(0.0);
}
""
end
case bool
expect compile_fail
version 300 es
both ""
#version 300 es
precision highp float;
${DECLARATIONS}
void main ()
{
int a = 1;
bool b = (bool)a;
${POSITION_FRAG_COLOR} = vec4(0.0);
}
""
end
end # casts
|