Files
Horizon-OC/Source/Atmosphere-MTC-Unlock/troposphere/daybreak/nanovg/shaders/fill_vsh.glsl
souldbminersmwc 15b7df8ef1 hoc-clk: add live vdd2, live boost clock and basic pwm dimming
hoc-sys: change stuff

ams-mtc: add ams-mtc

Update SECURITY.md

readme: fix alignment
2025-11-09 16:14:07 -05:00

17 lines
391 B
GLSL

#version 460
layout (location = 0) in vec2 vertex;
layout (location = 1) in vec2 tcoord;
layout (location = 0) out vec2 ftcoord;
layout (location = 1) out vec2 fpos;
layout (std140, binding = 0) uniform View
{
vec2 size;
} view;
void main(void) {
ftcoord = tcoord;
fpos = vertex;
gl_Position = vec4(2.0*vertex.x/view.size.x - 1.0, 1.0 - 2.0*vertex.y/view.size.y, 0, 1);
};