Files
jak-project/game/graphics/opengl_renderer/shaders/glow_probe_downsample.vert
T
water111 08ce65fd9b [jak2] add sprite glow renderer (#2232)
Adds the "sprite glow" renderer, which is responsible for the glowing
lights.
2023-02-20 20:25:45 -05:00

11 lines
190 B
GLSL

#version 430 core
layout (location = 0) in vec4 position_in;
out vec2 tex_coord;
void main() {
gl_Position = vec4((position_in.xy * 2) - 1.f, 0.f, 1.f);
tex_coord = position_in.xy;
}