Mercurial > xcodescriptingbridge
comparison Shaders/Shader.fsh @ 0:5ec52341f221
Initial commit
author | Eric Wing <ewing@anscamobile.com> |
---|---|
date | Fri, 29 Jul 2011 18:18:15 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:5ec52341f221 |
---|---|
1 // | |
2 // Shader.fsh | |
3 // MySampleProject | |
4 // | |
5 // Created by Eric Wing on 7/29/11. | |
6 // Copyright 2011 __MyCompanyName__. All rights reserved. | |
7 // | |
8 | |
9 varying lowp vec4 colorVarying; | |
10 | |
11 void main() | |
12 { | |
13 gl_FragColor = colorVarying; | |
14 } |