Last change
on this file since 12319 was
12115,
checked in by wiesep, 6 years ago
|
Changed folder structure, deletet some unused files and cleaned up code
|
File size:
295 bytes
|
Rev | Line | |
---|
[12115] | 1 | float4 Combine_fp |
---|
| 2 | ( |
---|
| 3 | in float2 texCoord: TEXCOORD0, |
---|
| 4 | |
---|
| 5 | uniform sampler2D RT : register(s0), |
---|
| 6 | uniform sampler2D Sum : register(s1), |
---|
| 7 | |
---|
| 8 | uniform float blur |
---|
| 9 | ) : COLOR |
---|
| 10 | { |
---|
| 11 | float4 render = tex2D(RT, texCoord); |
---|
| 12 | float4 sum = tex2D(Sum, texCoord); |
---|
| 13 | |
---|
| 14 | return lerp(render, sum, blur); |
---|
| 15 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.