mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
74 lines
1.2 KiB
GLSL
74 lines
1.2 KiB
GLSL
/* clang-format off */
|
|
[vertex]
|
|
|
|
#ifdef USE_GLES_OVER_GL
|
|
#define lowp
|
|
#define mediump
|
|
#define highp
|
|
#else
|
|
precision highp float;
|
|
precision highp int;
|
|
#endif
|
|
|
|
attribute highp vec4 vertex_attrib; // attrib:0
|
|
/* clang-format on */
|
|
|
|
attribute vec2 uv_in; // attrib:4
|
|
|
|
attribute vec2 uv2_in; // attrib:5
|
|
|
|
varying vec2 uv_interp;
|
|
varying vec2 uv2_interp;
|
|
|
|
#ifdef USE_COPY_SECTION
|
|
uniform highp vec4 copy_section;
|
|
#endif
|
|
|
|
void main() {
|
|
uv_interp = uv_in;
|
|
|
|
uv2_interp = uv2_in;
|
|
gl_Position = vertex_attrib;
|
|
|
|
#ifdef USE_COPY_SECTION
|
|
uv_interp = copy_section.xy + uv_interp * copy_section.zw;
|
|
gl_Position.xy = (copy_section.xy + (gl_Position.xy * 0.5 + 0.5) * copy_section.zw) * 2.0 - 1.0;
|
|
#endif
|
|
}
|
|
|
|
/* clang-format off */
|
|
[fragment]
|
|
|
|
#define M_PI 3.14159265359
|
|
|
|
#ifdef USE_GLES_OVER_GL
|
|
#define lowp
|
|
#define mediump
|
|
#define highp
|
|
#else
|
|
#if defined(USE_HIGHP_PRECISION)
|
|
precision highp float;
|
|
precision highp int;
|
|
#else
|
|
precision mediump float;
|
|
precision mediump int;
|
|
#endif
|
|
#endif
|
|
|
|
varying vec2 uv_interp;
|
|
/* clang-format on */
|
|
|
|
uniform sampler2D source; // texunit:0
|
|
|
|
varying vec2 uv2_interp;
|
|
|
|
void main() {
|
|
vec4 color = texture2D(source, uv_interp);
|
|
|
|
#ifdef USE_NO_ALPHA
|
|
color.a = 1.0;
|
|
#endif
|
|
|
|
gl_FragColor = color;
|
|
}
|