mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 15:32:59 +00:00
c5b9352c34
This reverts commit 03a8bc9875ef4e0e942ab6d8d0d9402c4e1830fe.
15 lines
332 B
C
15 lines
332 B
C
#include "shaders_common.h"
|
|
|
|
static const char *stock_vertex_xmb_snow_legacy = GLSL(
|
|
attribute vec3 VertexCoord;
|
|
uniform float time;
|
|
|
|
void main()
|
|
{
|
|
vec3 v = vec3(VertexCoord.x, 0.0, VertexCoord.y);
|
|
vec3 v2 = v;
|
|
v.y = v.z;
|
|
gl_Position = vec4(VertexCoord.x, VertexCoord.y, VertexCoord.y, 1.0);
|
|
}
|
|
);
|