From 4fb69b7d20e90746855de122422ac9cabd78f66f Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Wed, 22 Jun 2016 09:02:37 +0300 Subject: kms++: use DrmPropObject in AtomicReq The objects to which we set properties with AtomicReq must have properties, so they are DrmPropObjects instead of DrmObjects. Signed-off-by: Tomi Valkeinen --- kms++/inc/kms++/atomicreq.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kms++/inc') diff --git a/kms++/inc/kms++/atomicreq.h b/kms++/inc/kms++/atomicreq.h index 6ebdbf8..a9f779d 100644 --- a/kms++/inc/kms++/atomicreq.h +++ b/kms++/inc/kms++/atomicreq.h @@ -20,9 +20,9 @@ public: AtomicReq& operator=(const AtomicReq& other) = delete; void add(uint32_t ob_id, uint32_t prop_id, uint64_t value); - void add(DrmObject *ob, Property *prop, uint64_t value); - void add(DrmObject *ob, const std::string& prop, uint64_t value); - void add(DrmObject *ob, const std::map& values); + void add(DrmPropObject *ob, Property *prop, uint64_t value); + void add(DrmPropObject *ob, const std::string& prop, uint64_t value); + void add(DrmPropObject *ob, const std::map& values); int test(bool allow_modeset = false); int commit(void* data, bool allow_modeset = false); -- cgit v1.2.3