Counter Strike : Global Offensive Source Code
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.

21 lines
454 B

  1. #define HDRTYPE HDR_TYPE_NONE
  2. #include "common_ps_fxc.h"
  3. sampler FilmGrainSampler : register( s0 );
  4. const float4 vNoiseScale : register( c0 );
  5. struct PS_INPUT
  6. {
  7. float2 grainTexCoord : TEXCOORD0;
  8. };
  9. HALF4 main( PS_INPUT i ) : COLOR
  10. {
  11. float4 noise = tex2D( FilmGrainSampler, i.grainTexCoord );
  12. noise.w = noise.x*(1.0-vNoiseScale.w) + vNoiseScale.w;
  13. noise.xyz *= vNoiseScale.xyz;
  14. return float4( noise.x, noise.y, noise.z, noise.w );
  15. }