summaryrefslogtreecommitdiff
path: root/src/qcam/assets/shader/NV_vertex_shader.glsl
blob: 12e791e31e32e4d05b23b30bef736f605c380934 (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
 *
 * NV_vertex_shader.glsl - Vertex shader code for NV family
 */

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

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