mirror of
https://github.com/nunuhara/xsystem4.git
synced 2026-09-22 23:18:01 +03:00
This adds `USE_GLES` compile-time flag. If it's defined, gfx_init() requests an OpenGL ES >=3.0 context. This also makes the following changes to make it work with OpenGL ES: - The USE_GLES flag also switches shader's #version directive, which is now provided separately from the .glsl file. - Implicit conversion between int and float is not supported in GLSL ES. - Use GL_RGB in gfx_copy_main_surface. Because main_surface is in GL_RGB format, using GL_RGBA generates GL_INVALID_OPERATION in OpenGL ES.
25 lines
844 B
GLSL
25 lines
844 B
GLSL
/* Copyright (C) 2019 Nunuhara Cabbage <nunuhara@haniwa.technology>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://gnu.org/licenses/>.
|
|
*/
|
|
|
|
uniform sampler2D tex;
|
|
|
|
in vec2 tex_coord;
|
|
out vec4 frag_color;
|
|
|
|
void main() {
|
|
frag_color = texture(tex, tex_coord);
|
|
}
|