Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.2 KB

directxalphamode.md

File metadata and controls

33 lines (23 loc) · 1.2 KB
-api-id -api-type ms.custom
T:Windows.Graphics.DirectX.DirectXAlphaMode
winrt enum
19H1

DirectXAlphaMode

-description

Identifies the alpha value, transparency behavior, of a surface. This is a Windows Runtime equivalent of the Desktop DXGI_ALPHA_MODE enumeration.

-enum-fields

-field Unspecified:0

Indicates that the transparency behavior is not specified.

-field Premultiplied:1

Indicates that the transparency behavior is premultiplied. Each color is first scaled by the alpha value. The alpha value itself is the same in both straight and premultiplied alpha. Typically, no color channel value is greater than the alpha channel value. If a color channel value in a premultiplied format is greater than the alpha channel, the standard source-over blending math results in an additive blend.

-field Straight:2

Indicates that the transparency behavior is not premultiplied. The alpha channel indicates the transparency of the color.

-field Ignore:3

Indicates to ignore the transparency behavior.

-remarks

-examples

-see-also