diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-06-11 21:46:24 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-06-11 21:46:24 +0300 |
commit | 9916712a62169606d845510028a3ea6f84bd442f (patch) | |
tree | aca4e1bec39500812111c43a8ecee862edae0002 /kms++/atomicreq.h | |
parent | 736b295100ce441e800457bcbd08cb36db543ff2 (diff) |
kms++: organize into subdirs
Diffstat (limited to 'kms++/atomicreq.h')
-rw-r--r-- | kms++/atomicreq.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/kms++/atomicreq.h b/kms++/atomicreq.h deleted file mode 100644 index 6ebdbf8..0000000 --- a/kms++/atomicreq.h +++ /dev/null @@ -1,36 +0,0 @@ -#pragma once - -#include <cstdint> -#include <string> -#include <map> - -struct _drmModeAtomicReq; - -#include "decls.h" - -namespace kms -{ -class AtomicReq -{ -public: - AtomicReq(Card& card); - ~AtomicReq(); - - AtomicReq(const AtomicReq& other) = delete; - 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<std::string, uint64_t>& values); - - int test(bool allow_modeset = false); - int commit(void* data, bool allow_modeset = false); - int commit_sync(bool allow_modeset = false); - -private: - Card& m_card; - _drmModeAtomicReq* m_req; -}; - -} |