Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/Example/GLSL120/PassthroughFP.glsl @ 12091

Last change on this file since 12091 was 12091, checked in by wiesep, 6 years ago

Updated programs and adjusted Material to work with GLSL>150

File size: 120 bytes
Line 
1varying vec4 colour;
2
3/*
4  Basic ambient lighting fragment program for GLSL.
5*/
6void main()
7{
8        gl_FragColor = colour;
9}
Note: See TracBrowser for help on using the repository browser.