source:
GTP/trunk/Lib/Illum/GPUObscurancesGT/src/copy.frag
@
930
Revision 930, 173 bytes checked in by igarcia, 19 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[930] | 1 | uniform sampler2D texture; |
2 | uniform sampler2D texture2; | |
3 | ||
4 | varying vec2 texCoord; | |
5 | ||
6 | void main() | |
7 | { | |
8 | gl_FragColor = tex2D(texture,texCoord) + tex2D(texture2,texCoord); | |
9 | } |
Note: See TracBrowser
for help on using the repository browser.