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-20 19:14:33 +01:00
|
|
|
"uniform mat3 proj;\n"
|
|
|
|
"uniform vec4 color;\n"
|
|
|
|
"attribute vec2 pos;\n"
|
|
|
|
"attribute vec2 texcoord;\n"
|
|
|
|
"varying vec4 v_color;\n"
|
|
|
|
"varying vec2 v_texcoord;\n"
|
|
|
|
"\n"
|
|
|
|
"void main() {\n"
|
|
|
|
" gl_Position = vec4(proj * vec3(pos, 1.0), 1.0);\n"
|
|
|
|
" v_color = color;\n"
|
|
|
|
" v_texcoord = texcoord;\n"
|
|
|
|
"}\n";
|
2017-06-15 21:31:13 +02:00
|
|
|
|
|
|
|
const GLchar quad_fragment_src[] =
|
2018-03-20 19:14:33 +01:00
|
|
|
"precision mediump float;\n"
|
|
|
|
"varying vec4 v_color;\n"
|
|
|
|
"varying vec2 v_texcoord;\n"
|
|
|
|
"\n"
|
|
|
|
"void main() {\n"
|
|
|
|
" gl_FragColor = v_color;\n"
|
|
|
|
"}\n";
|
2017-06-15 21:31:13 +02:00
|
|
|
|
2017-06-23 20:25:55 +02:00
|
|
|
// Colored ellipses
|
2017-06-15 21:31:13 +02:00
|
|
|
const GLchar ellipse_fragment_src[] =
|
2018-03-20 19:14:33 +01:00
|
|
|
"precision mediump float;\n"
|
|
|
|
"varying vec4 v_color;\n"
|
|
|
|
"varying vec2 v_texcoord;\n"
|
|
|
|
"\n"
|
|
|
|
"void main() {\n"
|
|
|
|
" float l = length(v_texcoord - vec2(0.5, 0.5));\n"
|
|
|
|
" if (l > 0.5) {\n"
|
|
|
|
" discard;\n"
|
|
|
|
" }\n"
|
|
|
|
" gl_FragColor = v_color;\n"
|
|
|
|
"}\n";
|
2017-06-15 21:31:13 +02:00
|
|
|
|
|
|
|
// Textured quads
|
2018-03-20 19:14:33 +01:00
|
|
|
const GLchar tex_vertex_src[] =
|
|
|
|
"uniform mat3 proj;\n"
|
|
|
|
"uniform bool invert_y;\n"
|
|
|
|
"attribute vec2 pos;\n"
|
|
|
|
"attribute vec2 texcoord;\n"
|
|
|
|
"varying vec2 v_texcoord;\n"
|
|
|
|
"\n"
|
|
|
|
"void main() {\n"
|
|
|
|
" gl_Position = vec4(proj * vec3(pos, 1.0), 1.0);\n"
|
|
|
|
" if (invert_y) {\n"
|
|
|
|
" v_texcoord = vec2(texcoord.s, 1.0 - texcoord.t);\n"
|
|
|
|
" } else {\n"
|
|
|
|
" v_texcoord = texcoord;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
const GLchar tex_fragment_src_rgba[] =
|
|
|
|
"precision mediump float;\n"
|
|
|
|
"varying vec2 v_texcoord;\n"
|
|
|
|
"uniform sampler2D tex;\n"
|
|
|
|
"uniform float alpha;\n"
|
|
|
|
"\n"
|
|
|
|
"void main() {\n"
|
2018-05-18 19:05:49 +02:00
|
|
|
" gl_FragColor = texture2D(tex, v_texcoord) * alpha;\n"
|
2018-03-20 19:14:33 +01:00
|
|
|
"}\n";
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
const GLchar tex_fragment_src_rgbx[] =
|
|
|
|
"precision mediump float;\n"
|
|
|
|
"varying vec2 v_texcoord;\n"
|
|
|
|
"uniform sampler2D tex;\n"
|
|
|
|
"uniform float alpha;\n"
|
|
|
|
"\n"
|
|
|
|
"void main() {\n"
|
2018-05-18 19:05:49 +02:00
|
|
|
" gl_FragColor = vec4(texture2D(tex, v_texcoord).rgb, 1.0) * alpha;\n"
|
2018-03-20 19:14:33 +01:00
|
|
|
"}\n";
|
2017-08-09 21:25:34 +02:00
|
|
|
|
2018-03-20 19:14:33 +01:00
|
|
|
const GLchar tex_fragment_src_external[] =
|
|
|
|
"#extension GL_OES_EGL_image_external : require\n\n"
|
|
|
|
"precision mediump float;\n"
|
|
|
|
"varying vec2 v_texcoord;\n"
|
|
|
|
"uniform samplerExternalOES texture0;\n"
|
|
|
|
"uniform float alpha;\n"
|
|
|
|
"\n"
|
|
|
|
"void main() {\n"
|
2018-05-18 19:05:49 +02:00
|
|
|
" gl_FragColor = texture2D(texture0, v_texcoord) * alpha;\n"
|
2018-03-20 19:14:33 +01:00
|
|
|
"}\n";
|