-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathtransform_feedback.vs
More file actions
21 lines (18 loc) · 1.12 KB
/
transform_feedback.vs
File metadata and controls
21 lines (18 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**************************************************************************************/
/* */
/* Copyright (c) 2005-2011, Michele Bosi, Fabien Mathieu. */
/* All rights reserved. */
/* */
/* This file is part of Visualization Library */
/* http://www.visualizationlibrary.org */
/* */
/* Released under the OSI approved Simplified BSD License */
/* http://www.opensource.org/licenses/bsd-license.php */
/* */
/**************************************************************************************/
#version 330 core
in vec4 VertexPosition;
void main(void)
{
gl_Position = VertexPosition;
}