Guest User

Untitled

a guest
Nov 19th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. kernel vec4 coreImageKernel(sampler image)
  2. {
  3. vec2 pixCoord=samplerCoord(image);
  4. pixCoord.x=samplerSize(image).x-pixCoord.x;
  5. return sample(image, pixCoord);
  6. }
Add Comment
Please, Sign In to add comment