diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2017-05-30 13:57:53 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2017-05-30 14:22:00 +0300 |
commit | 21bc24b7aee138bd1f43a11eb8b86e96039fdacf (patch) | |
tree | eafb0f1615b751b20dd0bc8e378fb9a7e3a1b39f /kms++/inc | |
parent | 2d86678f0a78abf67cdef6be375f7d787c4f017d (diff) |
omapfb: add flags for memory alloc
Diffstat (limited to 'kms++/inc')
-rw-r--r-- | kms++/inc/kms++/omap/omapframebuffer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kms++/inc/kms++/omap/omapframebuffer.h b/kms++/inc/kms++/omap/omapframebuffer.h index 02ac79f..d1152b5 100644 --- a/kms++/inc/kms++/omap/omapframebuffer.h +++ b/kms++/inc/kms++/omap/omapframebuffer.h @@ -16,6 +16,9 @@ public: { None = 0, Tiled = 1 << 0, + MemContig = 1 << 1, + MemTiler = 1 << 2, + MemPin = 1 << 3, }; OmapFramebuffer(OmapCard& card, uint32_t width, uint32_t height, const std::string& fourcc, Flags flags = Flags::None); |