mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
98ae0826c7
Fixes #1238
11 lines
146 B
GLSL
11 lines
146 B
GLSL
attribute vec2 A0;
|
|
|
|
void main(void) {
|
|
if (true) {
|
|
gl_Position = vec4(A0, 0.0, 1.0);
|
|
return;
|
|
}
|
|
gl_Position = vec4(A0, 0.0, 1.0);
|
|
return;
|
|
}
|