blob: 7f8a6e51666ed1402eace3d052612c6d70d0b95d [file] [log] [blame]
Stephen White2fe0f4b2021-11-16 15:15:36 +00001#version 310 es
2precision mediump float;
3
4layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
5void f() {
6 float b = intBitsToFloat(1);
7 return;
8}
9void main() {
10 f();
11}
12
13