Last change
on this file since 12232 was
12115,
checked in by wiesep, 6 years ago
|
Changed folder structure, deletet some unused files and cleaned up code
|
File size:
315 bytes
|
Rev | Line | |
---|
[12115] | 1 | #version 150 |
---|
| 2 | |
---|
| 3 | uniform sampler2D rt0; |
---|
| 4 | uniform sampler2D rt1; |
---|
| 5 | uniform sampler2D rt2; |
---|
| 6 | uniform sampler2D rt3; |
---|
| 7 | |
---|
| 8 | in vec2 uv; |
---|
| 9 | out vec4 fragColour; |
---|
| 10 | |
---|
| 11 | void main(void) |
---|
| 12 | { |
---|
| 13 | |
---|
| 14 | //fragColour = texture(rt0, uv); |
---|
| 15 | fragColour = texture(rt1, uv); |
---|
| 16 | //fragColour = texture(rt2, uv); |
---|
| 17 | //fragColour = texture(rt3, uv); |
---|
| 18 | |
---|
| 19 | } |
---|
| 20 | |
---|
Note: See
TracBrowser
for help on using the repository browser.