1// Copyright (c) 2015 Sergio Gonzalez. All rights reserved.
2// License: https://github.com/serge-rgb/milton#license
3
4uniform sampler2D u_canvas;
5in vec2 v_uv;
6
7void
8main()
9{
10    // vec4 color = texture2D(u_canvas, v_uv);
11    vec4 color = texture(u_canvas, v_uv);
12
13    out_color = color;
14}
15