diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-09-28 10:02:10 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-09-28 10:02:10 +0300 |
commit | 02c3df2efcd209afa1f55de2b652e501dfd7b865 (patch) | |
tree | c5906ef89bfc02792a516ecbac8c67064e508a67 /libkms++ | |
parent | 162b3772ad3ce4e100eab476315e25720777de1d (diff) |
db: use atomic pageflip
Diffstat (limited to 'libkms++')
-rw-r--r-- | libkms++/atomicreq.cpp | 3 | ||||
-rw-r--r-- | libkms++/atomicreq.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/libkms++/atomicreq.cpp b/libkms++/atomicreq.cpp index 3346af9..236e501 100644 --- a/libkms++/atomicreq.cpp +++ b/libkms++/atomicreq.cpp @@ -54,10 +54,9 @@ int AtomicReq::test() return drmModeAtomicCommit(m_card.fd(), m_req, flags, 0); } -int AtomicReq::commit() +int AtomicReq::commit(void* data) { uint32_t flags = DRM_MODE_PAGE_FLIP_EVENT; - void* data = 0; return drmModeAtomicCommit(m_card.fd(), m_req, flags, data); } diff --git a/libkms++/atomicreq.h b/libkms++/atomicreq.h index 9a8a748..89797df 100644 --- a/libkms++/atomicreq.h +++ b/libkms++/atomicreq.h @@ -21,7 +21,7 @@ public: void add(DrmObject *ob, Property *prop, uint64_t value); int test(); - int commit(); + int commit(void* data); private: Card& m_card; |