mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
11 lines
146 B
Plaintext
11 lines
146 B
Plaintext
|
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;
|
||
|
}
|