dotfiles/.local/sioyek/shaders/simple_transparent.fragment

10 lines
160 B
Text
Raw Normal View History

2026-03-02 22:25:41 +01:00
precision mediump float;
out vec4 color;
in vec2 screen_pos;
in vec2 uvs;
uniform sampler2D pdf_texture;
void main(){
color = texture(pdf_texture, uvs);
}