added constants for raster operations

This commit is contained in:
Matt Hortman 2012-02-21 11:20:32 -05:00
parent 124460b5d9
commit 7d7a0260bf

7
libguac/include/protocol.h Normal file → Executable file
View File

@ -90,7 +90,12 @@ typedef enum guac_composite_mode {
GUAC_COMP_IN = 0x4, /* 0100 */
GUAC_COMP_OUT = 0x8, /* 1000 */
GUAC_COMP_RATOP = 0x9, /* 1001 */
GUAC_COMP_SRC = 0xC /* 1100 */
GUAC_COMP_SRC = 0xC, /* 1100 */
GUAC_COMP_OR = 0xF0, /* perform OR ternary raster operation */
GUAC_COMP_AND = 0xF1, /* perform AND ternary raster operation */
GUAC_COMP_XOR2 = 0xF2, /* perform XOR ternary raster operation */
GUAC_COMP_NOR = 0xF3 /* perform NOR ternary raster operation */
} guac_composite_mode;