mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
f362455387
Fixes #1236
7 lines
102 B
GLSL
7 lines
102 B
GLSL
void F0(in vec4 l0, out vec4 l1) {
|
|
vec4 l2 = vec4(0);
|
|
l2 = (mat4(1.0)) * (l0);
|
|
l1 = l2;
|
|
return;
|
|
}
|