-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathtransformManipulator.fs
More file actions
24 lines (19 loc) · 1.13 KB
/
transformManipulator.fs
File metadata and controls
24 lines (19 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**************************************************************************************/
/* */
/* 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
uniform vec4 Color;
out vec4 FragColor;
void main(void)
{
FragColor = Color;
}