RetroArch/gfx/drivers/gl_shaders/modern_alpha_blend.glsl.vert.h
twinaphex c5b9352c34 Revert "Rename some files"
This reverts commit 03a8bc9875ef4e0e942ab6d8d0d9402c4e1830fe.
2018-11-24 01:26:05 +01:00

17 lines
379 B
C

#include "shaders_common.h"
static const char *stock_vertex_modern_blend = GLSL(
attribute vec2 TexCoord;
attribute vec2 VertexCoord;
attribute vec4 Color;
uniform mat4 MVPMatrix;
varying vec2 tex_coord;
varying vec4 color;
void main() {
gl_Position = MVPMatrix * vec4(VertexCoord, 0.0, 1.0);
tex_coord = TexCoord;
color = Color;
}
);