10 lines
175 B
Text
10 lines
175 B
Text
|
|
precision mediump float;
|
||
|
|
|
||
|
|
out vec4 color;
|
||
|
|
in vec2 screen_pos;
|
||
|
|
in vec2 uvs;
|
||
|
|
uniform sampler2D pdf_texture;
|
||
|
|
|
||
|
|
void main(){
|
||
|
|
color = vec4(texture(pdf_texture, uvs).rgb, 1.0);
|
||
|
|
}
|