summaryrefslogtreecommitdiff
path: root/libkms++/atomicreq.h
blob: 9a8a7486180525039f449ef18460d75251a0666c (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
#pragma once

#include <cstdint>

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

	int test();
	int commit();

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

}