2017-06-23 17:38:45 +02:00
|
|
|
#include <GLES2/gl2.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include "render/gles2.h"
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2017-06-15 21:31:13 +02:00
|
|
|
// Colored quads
|
|
|
|
const GLchar quad_vertex_src[] =
|
2018-03-15 15:33:58 +01:00
|
|
|
"uniform mat3 proj;"
|
2017-06-15 21:31:13 +02:00
|
|
|
"uniform vec4 color;"
|
|
|
|
"attribute vec2 pos;"
|
|
|
|
"attribute vec2 texcoord;"
|
|
|
|
"varying vec4 v_color;"
|
|
|
|
"varying vec2 v_texcoord;"
|
2018-03-15 15:33:58 +01:00
|
|
|
""
|
2017-06-15 21:31:13 +02:00
|
|
|
"void main() {"
|
2018-03-15 21:30:31 +01:00
|
|
|
" gl_Position = vec4(proj * vec3(pos, 1.0), 1.0);"
|
2018-03-15 15:33:58 +01:00
|
|
|
" v_color = color;"
|
|
|
|
" v_texcoord = texcoord;"
|
2017-06-15 21:31:13 +02:00
|
|
|
"}";
|
|
|
|
|
|
|
|
const GLchar quad_fragment_src[] =
|
|
|
|
"precision mediump float;"
|
|
|
|
"varying vec4 v_color;"
|
|
|
|
"varying vec2 v_texcoord;"
|
2018-03-15 15:48:09 +01:00
|
|
|
""
|
2017-06-15 21:31:13 +02:00
|
|
|
"void main() {"
|
|
|
|
" gl_FragColor = v_color;"
|
|
|
|
"}";
|
|
|
|
|
2017-06-23 20:25:55 +02:00
|
|
|
// Colored ellipses
|
2017-06-15 21:31:13 +02:00
|
|
|
const GLchar ellipse_fragment_src[] =
|
|
|
|
"precision mediump float;"
|
|
|
|
"varying vec4 v_color;"
|
|
|
|
"varying vec2 v_texcoord;"
|
2018-03-15 15:48:09 +01:00
|
|
|
""
|
2017-06-15 21:31:13 +02:00
|
|
|
"void main() {"
|
|
|
|
" float l = length(v_texcoord - vec2(0.5, 0.5));"
|
|
|
|
" if (l > 0.5) discard;"
|
|
|
|
" gl_FragColor = v_color;"
|
|
|
|
"}";
|
|
|
|
|
|
|
|
// Textured quads
|
2017-06-08 21:52:42 +02:00
|
|
|
const GLchar vertex_src[] =
|
2018-03-15 15:33:58 +01:00
|
|
|
"uniform mat3 proj;"
|
2018-03-07 15:41:12 +01:00
|
|
|
"uniform bool invert_y;"
|
2017-06-15 21:31:13 +02:00
|
|
|
"attribute vec2 pos;"
|
|
|
|
"attribute vec2 texcoord;"
|
|
|
|
"varying vec2 v_texcoord;"
|
2017-06-23 17:46:03 +02:00
|
|
|
""
|
2017-06-15 21:31:13 +02:00
|
|
|
"void main() {"
|
2018-03-15 21:30:31 +01:00
|
|
|
" gl_Position = vec4(proj * vec3(pos, 1.0), 1.0);"
|
2018-03-07 15:41:12 +01:00
|
|
|
" if (invert_y) {"
|
|
|
|
" v_texcoord = vec2(texcoord.s, 1.0 - texcoord.t);"
|
|
|
|
" } else {"
|
|
|
|
" v_texcoord = texcoord;"
|
|
|
|
" }"
|
2017-06-15 21:31:13 +02:00
|
|
|
"}";
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2017-06-23 20:25:55 +02:00
|
|
|
const GLchar fragment_src_rgba[] =
|
2017-06-15 21:31:13 +02:00
|
|
|
"precision mediump float;"
|
|
|
|
"varying vec2 v_texcoord;"
|
|
|
|
"uniform sampler2D tex;"
|
2017-06-23 20:25:55 +02:00
|
|
|
"uniform float alpha;"
|
2018-03-15 15:48:09 +01:00
|
|
|
""
|
2017-06-15 21:31:13 +02:00
|
|
|
"void main() {"
|
2017-06-23 20:25:55 +02:00
|
|
|
" gl_FragColor = alpha * texture2D(tex, v_texcoord);"
|
2017-06-15 21:31:13 +02:00
|
|
|
"}";
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2017-06-23 20:25:55 +02:00
|
|
|
const GLchar fragment_src_rgbx[] =
|
2017-06-15 21:31:13 +02:00
|
|
|
"precision mediump float;"
|
|
|
|
"varying vec2 v_texcoord;"
|
|
|
|
"uniform sampler2D tex;"
|
2017-06-23 20:25:55 +02:00
|
|
|
"uniform float alpha;"
|
2018-03-15 15:48:09 +01:00
|
|
|
""
|
2017-06-15 21:31:13 +02:00
|
|
|
"void main() {"
|
2018-03-15 15:33:58 +01:00
|
|
|
" gl_FragColor.rgb = alpha * texture2D(tex, v_texcoord).rgb;"
|
|
|
|
" gl_FragColor.a = alpha;"
|
2017-06-15 21:31:13 +02:00
|
|
|
"}";
|
2017-08-09 21:25:34 +02:00
|
|
|
|
|
|
|
const GLchar fragment_src_external[] =
|
|
|
|
"#extension GL_OES_EGL_image_external : require\n"
|
|
|
|
"precision mediump float;"
|
2017-08-12 14:48:24 +02:00
|
|
|
"varying vec2 v_texcoord;"
|
2017-08-09 21:25:34 +02:00
|
|
|
"uniform samplerExternalOES texture0;"
|
2018-03-19 15:45:34 +01:00
|
|
|
"uniform float alpha;"
|
2018-03-15 15:48:09 +01:00
|
|
|
""
|
2017-08-09 21:25:34 +02:00
|
|
|
"void main() {"
|
2018-03-15 15:33:58 +01:00
|
|
|
" vec4 col = texture2D(texture0, v_texcoord);"
|
2018-03-19 15:45:34 +01:00
|
|
|
" gl_FragColor = vec4(col.rgb, col.a * alpha);"
|
2017-08-09 21:25:34 +02:00
|
|
|
"}";
|