util/edges: use bitmask for wlr_edges

This commit is contained in:
Tudor Brindus 2020-10-31 18:06:45 -04:00 committed by Simon Ser
parent 0fdb41fe7c
commit 368d0146fb
1 changed files with 4 additions and 4 deletions

View File

@ -19,10 +19,10 @@
enum wlr_edges {
WLR_EDGE_NONE = 0,
WLR_EDGE_TOP = 1,
WLR_EDGE_BOTTOM = 2,
WLR_EDGE_LEFT = 4,
WLR_EDGE_RIGHT = 8,
WLR_EDGE_TOP = 1 << 0,
WLR_EDGE_BOTTOM = 1 << 1,
WLR_EDGE_LEFT = 1 << 2,
WLR_EDGE_RIGHT = 1 << 3,
};
#endif