cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

texture-blit.frag (180B)


      1
      2#version 300 es
      3
      4uniform sampler2D image;
      5in  mediump vec2 ex_tex_coord;
      6out mediump vec4 out_frag_color;
      7
      8void main(void) {
      9     out_frag_color = texture(image, ex_tex_coord);
     10}