aboutsummaryrefslogtreecommitdiff
path: root/vendor/gioui.org/shader/gio/blit.frag
blob: a88f4dc6442c9e8c8eed0b31b1521a9f4b26d371 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#version 310 es

// SPDX-License-Identifier: Unlicense OR MIT

precision mediump float;

layout(location=0) in highp vec2 vUV;

{{.Header}}

layout(location = 0) out vec4 fragColor;

void main() {
	fragColor = {{.FetchColorExpr}};
}