diff options
author | emersion <contact@emersion.fr> | 2017-12-14 20:31:18 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-12-14 20:31:18 +0100 |
commit | 466e86b7b2cbefa55ad5b85a97ee8257c24cb81b (patch) | |
tree | cc1691ec5abefdffcb8ac6312574ffa03bc4049a /include/wlr/util/edges.h | |
parent | eb763439f75d3c9174280d0c75ef44941dd99340 (diff) | |
parent | a9fb071d49b244b72846b384a9e2ef2d9b03a05f (diff) |
Merge branch 'master' into surface-transform
Diffstat (limited to 'include/wlr/util/edges.h')
-rw-r--r-- | include/wlr/util/edges.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/wlr/util/edges.h b/include/wlr/util/edges.h new file mode 100644 index 00000000..53268323 --- /dev/null +++ b/include/wlr/util/edges.h @@ -0,0 +1,12 @@ +#ifndef WLR_UTIL_EDGES_H +#define WLR_UTIL_EDGES_H + +enum wlr_edges { + WLR_EDGE_NONE = 0, + WLR_EDGE_TOP = 1, + WLR_EDGE_BOTTOM = 2, + WLR_EDGE_LEFT = 4, + WLR_EDGE_RIGHT = 8, +}; + +#endif |