Enum RasterOperationMode
Defines logical raster operations which can be used with blit, stretch-blit and some other functions.
public enum RasterOperationMode
Fields
And = 6dst = src AND dst.
AndInvert = 7dst = (NOT src) AND dst..
AndReverse = 4dst = src AND (NOT dst).
Clear = 0dst = 0.
Copy = 5dst = src.
Equiv = 10dst = (NOT src) XOR dst.
Invert = 2dst = NOT dst.
Nand = 13dst = (NOT src) OR (NOT dst).
NoOp = 8dst = dst (no operation).
Nor = 9dst = (NOT src) AND (NOT dst).
Or = 14dst = src OR dst.
OrInvert = 12dst = (NOT src) OR dst.
OrReverse = 3dst = src OR (NOT dst).
Set = 15dst = 1.
SrcInvert = 11dst = (NOT src).
Xor = 1dst = src XOR dst.