Last change
on this file since 12408 was
12115,
checked in by wiesep, 6 years ago
|
Changed folder structure, deletet some unused files and cleaned up code
|
File size:
301 bytes
|
Line | |
---|
1 | uniform sampler2D rt0; |
---|
2 | uniform sampler2D rt1; |
---|
3 | uniform sampler2D rt2; |
---|
4 | uniform sampler2D rt3; |
---|
5 | |
---|
6 | varying vec2 uv; |
---|
7 | |
---|
8 | void main(void) |
---|
9 | { |
---|
10 | |
---|
11 | //gl_FragColor = texture2D(rt0, uv); |
---|
12 | gl_FragColor = texture2D(rt1, uv); |
---|
13 | //gl_FragColor = texture2D(rt2, uv); |
---|
14 | //gl_FragColor = texture2D(rt3, uv); |
---|
15 | |
---|
16 | } |
---|
17 | |
---|
Note: See
TracBrowser
for help on using the repository browser.