pixel.chunk 143 B

1234567
  1. // you can write GLSL code directly in here
  2. //转换成像素点的坐标
  3. vec2 changePixel(vec2 uv,vec2 size)
  4. {
  5. return uv*size;
  6. }