aboutsummaryrefslogtreecommitdiff
path: root/assets/shaders/Taper.frag.glsl
diff options
context:
space:
mode:
authorValerio Virgillito2012-02-23 00:34:37 -0800
committerValerio Virgillito2012-02-23 00:34:37 -0800
commit3675cac3993430490d9eef18157314d53ffa1a6a (patch)
treefb225a6d8fc3c983c96b1507483d628909dc8c1e /assets/shaders/Taper.frag.glsl
parent2afef244a3f8124f8a049e504e9782c05904ce23 (diff)
parent3730bbc7cc5d5f07b3d788885475a8f9810b480e (diff)
downloadninja-3675cac3993430490d9eef18157314d53ffa1a6a.tar.gz
Merge pull request #60 from mqg734/WebGLMaterials
Integrating WebGL and canvas-2d drawing fixes. Fixed Materials Editor Popup to work with latest Montage framework. Also adding back WebGL materials.
Diffstat (limited to 'assets/shaders/Taper.frag.glsl')
-rw-r--r--assets/shaders/Taper.frag.glsl17
1 files changed, 17 insertions, 0 deletions
diff --git a/assets/shaders/Taper.frag.glsl b/assets/shaders/Taper.frag.glsl
new file mode 100644
index 00000000..3a5766fb
--- /dev/null
+++ b/assets/shaders/Taper.frag.glsl
@@ -0,0 +1,17 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6
7
8#ifdef GL_ES
9precision highp float;
10#endif
11
12//uniform vec4 color;
13varying vec4 v_color;
14
15void main() {
16 gl_FragColor = v_color;
17}