summaryrefslogtreecommitdiff
path: root/libkms++/atomicreq.h
blob: 54740c255c9875e384b961acdffc7d4233792c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once

#include <cstdint>
#include <string>

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);

	int test();
	int commit();
	int commit(void* data);
	int commit(PageFlipHandlerBase* data) { return commit((void*)data); }
	int commit_sync();

private:
	Card& m_card;
	_drmModeAtomicReq* m_req;
};

}