blob: 62a3b1fa55c9120b4c476d7f0a118c40e41a34ae [file] [log] [blame]
Antonio Maiorano08d92792024-01-11 20:51:50 +00001#version 310 es
2
3void deref() {
4 ivec3 a = ivec3(0, 0, 0);
5 a.x = (a.x + 42);
6}
7
8void no_deref() {
9 ivec3 a = ivec3(0, 0, 0);
10 a.x = (a.x + 42);
11}
12
13void tint_symbol() {
14 deref();
15 no_deref();
16}
17
18layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
19void main() {
20 tint_symbol();
21 return;
22}