Click or drag to resize
SoGLGraphicConfigTemplateSetFullSceneAntialiasing Method (SoGraphicConfigTemplatePreferences, Int32, Int32)

Sets the full-scene antialiasing preferences.

Namespace: OIV.Inventor.Components
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public void SetFullSceneAntialiasing(
	SoGraphicConfigTemplatePreferences pref,
	int minFsaaBits,
	int maxFsaaBits
)

Parameters

pref
Type: OIV.Inventor.ComponentsSoGraphicConfigTemplatePreferences
minFsaaBits
Type: SystemInt32
maxFsaaBits
Type: SystemInt32
Remarks

Full-scene anti-aliasing by supersampling usually means that each full frame is rendered at double (2x), quadruple (4x), ..., the display resolution, and then down-sampled to match the display resolution. So a 2x FSAA would render four supersampled pixels for each single pixel of each frame. minFsaaBits and maxFsaaBits are integer values specifying the minimum and maximum required number of samples to use during antialiasing computation. The required number of samples must be greater than or equal to minFsaaBits, and less than or equal to maxFsaaBits. The maximum number of samples is always preferred. If pref is FORBIDDEN, the min/max values are ignored.

See Also