sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 5de5c3838bf72e74fbf3a863acdfe9827f7ccd7a
parent 7e6c67c26c5e481ffef11d031fe72411db45d088
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue, 19 Jul 2016 17:56:51 -0400

Merge pull request #774 from Hummer12007/eventmasks

Properly construct event bitmasks
Diffstat:
Minclude/ipc.h | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/include/ipc.h b/include/ipc.h @@ -12,14 +12,14 @@ enum ipc_command_type { IPC_GET_VERSION = 7, IPC_GET_INPUTS = 8, // Events send from sway to clients. Events have the highest bits set. - IPC_EVENT_WORKSPACE = (1 << (31 - 0)), - IPC_EVENT_OUTPUT = (1 << (31 - 1)), - IPC_EVENT_MODE = (1 << (31 - 2)), - IPC_EVENT_WINDOW = (1 << (32 - 3)), - IPC_EVENT_BARCONFIG_UPDATE = (1 << (31 - 4)), - IPC_EVENT_BINDING = (1 << (31 - 5)), - IPC_EVENT_MODIFIER = (1 << (31 - 6)), - IPC_EVENT_INPUT = (1 << (31 - 7)), + IPC_EVENT_WORKSPACE = ((1<<31) | 0), + IPC_EVENT_OUTPUT = ((1<<31) | 1), + IPC_EVENT_MODE = ((1<<31) | 2), + IPC_EVENT_WINDOW = ((1<<31) | 3), + IPC_EVENT_BARCONFIG_UPDATE = ((1<<31) | 4), + IPC_EVENT_BINDING = ((1<<31) | 5), + IPC_EVENT_MODIFIER = ((1<<31) | 6), + IPC_EVENT_INPUT = ((1<<31) | 7), IPC_SWAY_GET_PIXELS = 0x81 };