view Shaders/Shader.fsh @ 1:143ac8f6fe35

Made universal iPhone/iPad
author Eric Wing <ewing@anscamobile.com>
date Fri, 29 Jul 2011 18:36:55 -0700
parents 5ec52341f221
children
line wrap: on
line source

//
//  Shader.fsh
//  MySampleProject
//
//  Created by Eric Wing on 7/29/11.
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

varying lowp vec4 colorVarying;

void main()
{
    gl_FragColor = colorVarying;
}