blob: 89797dfaedb3ed0906a4a1130e631ea7068e98f1 (
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(void* data);
private:
Card& m_card;
_drmModeAtomicReq* m_req;
};
}
|