1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-02-25 17:30:09 +01:00
ebiten/internal/shader/testdata/issue1298.expected.vs
2020-08-12 12:16:22 +09:00

9 lines
119 B
GLSL

void F0(in float l0, out int l1);
void F0(in float l0, out int l1) {
int l2 = 0;
l2 = int(l0);
l1 = l2;
return;
}