You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
383 B
18 lines
383 B
#define HDRTYPE HDR_TYPE_NONE |
|
#include "common_ps_fxc.h" |
|
|
|
sampler FilmDustSampler : register( s0 ); |
|
|
|
const float4 vChannelSelect : register( c0 ); |
|
|
|
struct PS_INPUT |
|
{ |
|
float2 grainTexCoord : TEXCOORD0; |
|
}; |
|
|
|
float4 main( PS_INPUT i ) : COLOR |
|
{ |
|
float4 noise = dot( tex2D( FilmDustSampler, i.grainTexCoord ), vChannelSelect ); |
|
|
|
return float4( noise.x, noise.y, noise.z, 1.0 ); |
|
}
|
|
|