mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
00e45affe9
'texelFetch' requires OpenGLSL 1.30, which requires OpenGL 3.0+. macOS might not support OpenGL 3.0 and 3.1, so adopt 3.2. Updates #1431
11 lines
139 B
GLSL
11 lines
139 B
GLSL
in 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;
|
|
}
|