mirror of
https://github.com/libretro/RetroArch
synced 2024-12-28 18:31:05 +00:00
e062b98088
find . -type f -exec sed -i '${/^[[:space:]]*$/d;}' {} \+
12 lines
255 B
C
12 lines
255 B
C
#include "shaders_common.h"
|
|
|
|
static const char *vertex_source = GLSL(
|
|
attribute vec2 aVertex;
|
|
attribute vec2 aTexCoord;
|
|
varying vec2 vTex;
|
|
|
|
void main() {
|
|
gl_Position = vec4(aVertex, 0.0, 1.0); vTex = aTexCoord;
|
|
}
|
|
);
|