aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/util/edges.h
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-12-11 16:14:03 +0100
committeremersion <contact@emersion.fr>2017-12-11 16:14:03 +0100
commitc67a5824b8831b50e9f3b09cc182f496fb973321 (patch)
tree0a4f6090819e680bcd611388c8cbe867fbb4983a /include/wlr/util/edges.h
parent6001235b0465ba1961f8abd66a860bcf1f14fc22 (diff)
parent808ab5aa1bd990776ae30d5f9bb171ca7b42d6ef (diff)
Merge branch 'master' into display-destroy
Diffstat (limited to 'include/wlr/util/edges.h')
-rw-r--r--include/wlr/util/edges.h12
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