summaryrefslogtreecommitdiff
path: root/kms++/inc
diff options
context:
space:
mode:
Diffstat (limited to 'kms++/inc')
-rw-r--r--kms++/inc/kms++/plane.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kms++/inc/kms++/plane.h b/kms++/inc/kms++/plane.h
index d50e539..26f3951 100644
--- a/kms++/inc/kms++/plane.h
+++ b/kms++/inc/kms++/plane.h
@@ -7,9 +7,9 @@ namespace kms
enum class PlaneType
{
- Overlay = 0,
- Primary = 1,
- Cursor = 2,
+ Overlay = 1 << 0,
+ Primary = 1 << 1,
+ Cursor = 1 << 2,
};
struct PlanePriv;