Advertisement
kuso4ek

post.frag

Jun 5th, 2022 (edited)
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #version 330
  2.  
  3. in vec2 coord;
  4. uniform sampler2D frame;
  5.  
  6. out vec4 color;
  7.  
  8. void main()
  9. {
  10.     color = texture(frame, coord);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement