repo.or.cz
/
qemu
/
armbru.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'pull-loongarch-20241016' of https://gitlab.com/gaosong/qemu into staging
[qemu/armbru.git]
/
ui
/
shader
/
texture-blit.frag
blob
8ed95a46b66e146390220278719894f52a1db472
1
#version 300 es
2
3
uniform sampler2D image;
4
in mediump vec2 ex_tex_coord;
5
out mediump vec4 out_frag_color;
6
7
void main(void) {
8
out_frag_color = texture(image, ex_tex_coord);
9
}