15 lines
221 B
Plaintext
15 lines
221 B
Plaintext
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
|
||
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||
|
void f() {
|
||
|
vec3 a = vec3(1.0f, 2.0f, 3.0f);
|
||
|
ivec3 b = floatBitsToInt(a);
|
||
|
return;
|
||
|
}
|
||
|
void main() {
|
||
|
f();
|
||
|
}
|
||
|
|
||
|
|