summaryrefslogtreecommitdiff
path: root/src/qcam/assets/shader/YUV.vert
blob: f38e8045db89048ddcb4500d4d3534cfe2fabe6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2020, Linaro
 *
 * YUV.vert - Vertex shader for YUV to RGB conversion
 */

attribute vec4 vertexIn;
attribute vec2 textureIn;
varying vec2 textureOut;

void main(void)
{
	gl_Position = vertexIn;
	textureOut = textureIn;
}