FastBlur QML Type
A fast Gaussian blur shader effect. More...
| Import Statement: | import FluentUI.Controls 1.0 |
Properties
- cached : bool
- radius : real
- source : Item
- transparentBorder : bool
Detailed Description
FastBlur applies a Gaussian blur to a source item using an optimized shader implementation. The blur radius is configurable, and the output can be cached for performance. A transparent border option prevents edge darkening.
Property Documentation
cached : bool
Whether the blur result is cached. When true, the effect is rendered once and reused, improving performance for static content.
radius : real
The blur radius. Higher values produce a stronger blur effect. Defaults to 0.
source : Item
The source item to blur.
transparentBorder : bool
Whether to preserve transparency at the edges of the blurred output. When true, the source is rendered with a transparent border to avoid edge darkening artifacts.