cyan.glsl 157 B

1234567
  1. float4 render(float2 uv) {
  2. float4 image_color = image.Sample(builtin_texture_sampler, uv);
  3. image_color[3] = 1;
  4. image_color[0] = 0;
  5. return image_color;
  6. }