FidelityFX Lens 1.0

FidelityFX Lens is a light-weight shader with lens and film effects. Its purpose is to help move effects, such as film and camera effects, which can interfere with the operation of upscalers and sharpeners, which can be sensitive to noise, to after those respective algorithms/passes. It requires no textures and only a few constants that probably already exist in an engine.

Currently, FidelityFX Lens features chromatic aberration, vignette, and film grain effects.

Shading language requirements

HLSL GLSL CS_6_0

Inputs

This section describes the inputs to FidelityFX Lens 1.0.

Input name Type Notes
Input texture Texture2D A resource containing the source color target rendered thus far, after render passes such as geometry, effects, and upscaling.
Constants Constant buffer A constant buffer with the artistic values chosen for the effects, such as intensity of film grain, vignette, and chromatic aberration.

Integration guidelines

Callback Functions

FidelityFX Lens requires the following callback functions defined ([H] versions if FidelityFX Lens should work with half types):

FfxLensSampleR[H]

Samples the red channel from the color input.

FfxLensSampleG[H]

Samples the green channel from the color input.

FfxLensSampleB[H]

Samples the blue channel from the color input.

StoreLensOutput[H]

Stores the final computed color from Lens into the output color buffer.

Note for the above callback functions: If transversal chromatic aberration is needed, R and B can point to blurred versions of the main texture. Otherwise, all three can refer to the same texture.

Main Function

FfxLens[H] is called in the main function.

Copied!

void CS(uint LocalThreadID : SV_GroupThreadID,
        uint2 WorkGroupID : SV_GroupID)
{
    FfxLens(LocalThreadID, WorkGroupID);
}

Chromatic aberration (CA)

Use the auxilary function FfxLensGetRGMag with the strength of the CA needed to get the Red and Green magnification values.

Call FfxLensSampleWithChromaticAberration with the following parameters to get a sampling of the main color texture properly offset by the chromatic aberration effect:

  • pixel coodinates
  • screen center coord
  • red and green magnification values

Vignette

This function is a simple pixel-in, pixel-out function.

Call FfxLensApplyVignette with the following parameters to write out a new calculated color with the vignette effect applied to it:

  • pixel coordinates
  • screen center coord
  • current calculated color to apply vignette to
  • intensity value

Film grain

Like vignette, this is also a pixel-in, pixel-out function.

Call FfxLensApplyFilmGrain with the following parameters to write out a new calculated color with the film grain effect applied to it:

  • pixel coordinates
  • current calculated color to apply the grain to
  • grain size/scale value
  • grain intensity value

The techniques

Chromatic aberration (CA)

Chromatic aberration has two types that arise when the lens system of a camera either:

  • magnifies each color differently (transverse), or
  • focuses each color differently (axial).

To achieve this effect, we sample each channel at a magnified offset, and optionally from a slightly blurred texture.

To allow for a linear control and a realistic lens, we calculate the degree of magnification of red and green using Cauchy’s equation:

alt text

We chose A and B for K5 glass, a common lens material. The B factor can vary linearly, creating a smooth and physically plausible chromatic aberration effect.

Vignette

The vignette effect is created by windowing a Cos^4 attenuation function. We chose Cos^4 as it is the physical response of film with angle of light. The controls vary the window size, mimicking the difference in size between the film and the aperture.

alt text

Film grain

Film grain represents the light-sensitive crystals of real film. To mimic the effect, we start with ordered “grains”:

alt text

which are chopped-up with a high quality random number generator (RNG) [PCG-3D]:

alt text

This creates a realistic distribution of grains. The controls vary the size and attenuation factor of the grains to achieve the final desired effect.

References

[PCG-3D] Hash Functions for GPU Rendering https://www.jcgt.org/published/0009/03/02/paper.pdf

See also