D3D12_COLOR_WRITE_ENABLE enumeration (d3d12.h)
Identifies which components of each pixel of a render target are writable during blending.
Syntax
typedef enum D3D12_COLOR_WRITE_ENABLE {
D3D12_COLOR_WRITE_ENABLE_RED = 1,
D3D12_COLOR_WRITE_ENABLE_GREEN = 2,
D3D12_COLOR_WRITE_ENABLE_BLUE = 4,
D3D12_COLOR_WRITE_ENABLE_ALPHA = 8,
D3D12_COLOR_WRITE_ENABLE_ALL
} ;
Constants
D3D12_COLOR_WRITE_ENABLE_REDValue: 1 Allow data to be stored in the red component. |
D3D12_COLOR_WRITE_ENABLE_GREENValue: 2 Allow data to be stored in the green component. |
D3D12_COLOR_WRITE_ENABLE_BLUEValue: 4 Allow data to be stored in the blue component. |
D3D12_COLOR_WRITE_ENABLE_ALPHAValue: 8 Allow data to be stored in the alpha component. |
D3D12_COLOR_WRITE_ENABLE_ALLAllow data to be stored in all components. |
Remarks
This enum is used by the D3D12_RENDER_TARGET_BLEND_DESC structure.
Requirements
| Header | d3d12.h |