// d3dumddi.h
typedef enum _D3DDDI_COMPOSERECTSOP {
D3DDDICOMPOSERECTS_COPY,
D3DDDICOMPOSERECTS_OR,
D3DDDICOMPOSERECTS_AND,
D3DDDICOMPOSERECTS_NEG,
D3DDDICOMPOSERECTS_FORCE_UINT
} D3DDDI_COMPOSERECTSOP;
View the official Windows Driver Kit DDI referenceNo description available.
Describes the ways in which to compose rectangle areas.
D3DDDICOMPOSERECTS_COPYCopy.
D3DDDICOMPOSERECTS_ORUse an OR.
D3DDDICOMPOSERECTS_ANDUse an AND.
D3DDDICOMPOSERECTS_NEGUse NEG.
D3DDDICOMPOSERECTS_FORCE_UINTForces this enumeration to compile to 32 bits in size. Without this value, some compilers would allow this enumeration to compile to a size other than 32 bits. You should not use this value.