diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2015-01-09 11:40:23 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-05-05 10:48:22 +0200 |
commit | cd2bc889e5b30c69926fc1511b6522e7cb4c705d (patch) | |
tree | 2e436873e72110ad1b22b5b4d84f409d6a05b5aa /ui/shader/texture-blit.frag | |
parent | 985e1c9b008e5e8b6eac41546266d3abcfa6282a (diff) |
console-gl: add opengl rendering helper functions
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'ui/shader/texture-blit.frag')
-rw-r--r-- | ui/shader/texture-blit.frag | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/shader/texture-blit.frag b/ui/shader/texture-blit.frag new file mode 100644 index 0000000000..bfa202c22b --- /dev/null +++ b/ui/shader/texture-blit.frag @@ -0,0 +1,10 @@ + +#version 300 es + +uniform sampler2D image; +in mediump vec2 ex_tex_coord; +out mediump vec4 out_frag_color; + +void main(void) { + out_frag_color = texture(image, ex_tex_coord); +} |