nw::gfx::res::ResBlendOperation::LogicOp Enumerated Type

Syntax

enum LogicOp;

Value

Value Description
LOGICOP_CLEAR Clears all bit values to 0.
LOGICOP_AND Takes the logical AND of the source color and destination color.
LOGICOP_AND_REVERSE Takes the logical product of the source color and inverse bit values of the destination color.
LOGICOP_COPY Takes the bit values of the source color.
LOGICOP_SET Clears all bit values to 1.
LOGICOP_COPY_INVERTED Takes the inverted bit values of the source color.
LOGICOP_NOOP Takes the bit values of the destination color.
LOGICOP_INVERT Takes the inverted values of the destination color.
LOGICOP_NAND Takes the inverse bit values of the logical AND of the source color and destination color.
LOGICOP_OR Takes the logical OR of the source color and destination color.
LOGICOP_NOR Takes the inverse bit values of the logical OR of the source color and destination color.
LOGICOP_XOR Takes the exclusive OR of the source color and destination color.
LOGICOP_EQUIV Takes the inverse bit values of the exclusvie OR of the source color and destination color.
LOGICOP_AND_INVERTED Takes the logical AND of the inverse bit values of the source color and the destination color.
LOGICOP_OR_REVERSE Takes the logical sum of the source color and inverse bit values of the destination color.
LOGICOP_OR_INVERTED Takes the logical OR of the inverse bit values of the source color and the destination color.

Description

Defines the calculation method to be used in logical operations.


CONFIDENTIAL