include: Add missing logic ops.

Signed-off-by: Philip Rebohle <philip.rebohle@tu-dortmund.de>
This commit is contained in:
Philip Rebohle 2020-04-01 12:54:43 +02:00 committed by Hans-Kristian Arntzen
parent 1d8afd85d4
commit 1b41a77c19
1 changed files with 11 additions and 0 deletions

View File

@ -1534,6 +1534,17 @@ typedef enum D3D12_LOGIC_OP
D3D12_LOGIC_OP_COPY = 2,
D3D12_LOGIC_OP_COPY_INVERTED = 3,
D3D12_LOGIC_OP_NOOP = 4,
D3D12_LOGIC_OP_INVERT = 5,
D3D12_LOGIC_OP_AND = 6,
D3D12_LOGIC_OP_NAND = 7,
D3D12_LOGIC_OP_OR = 8,
D3D12_LOGIC_OP_NOR = 9,
D3D12_LOGIC_OP_XOR = 10,
D3D12_LOGIC_OP_EQUIV = 11,
D3D12_LOGIC_OP_AND_REVERSE = 12,
D3D12_LOGIC_OP_AND_INVERTED = 13,
D3D12_LOGIC_OP_OR_REVERSE = 14,
D3D12_LOGIC_OP_OR_INVERTED = 15,
} D3D12_LOGIC_OP;
typedef enum D3D12_COLOR_WRITE_ENABLE