summaryrefslogtreecommitdiff
path: root/kms++/src/framebuffer.cpp
blob: 39c4e163be287ff3cb54426cac712e287b2abbf2 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <algorithm>
#include <cstring>
#include <stdexcept>
#include <sys/mman.h>
#include <xf86drm.h>
#include <xf86drmMode.h>

#include <kms++/kms++.h>

using namespace std;

namespace kms
{

Framebuffer::Framebuffer(Card& card, uint32_t width, uint32_t height)
	: DrmObject(card, DRM_MODE_OBJECT_FB), m_width(width), m_height(height)
{
	card.m_framebuffers.push_back(this);
}

Framebuffer::Framebuffer(Card& card, uint32_t id)
	: DrmObject(card, id, DRM_MODE_OBJECT_FB)
{
	auto fb = drmModeGetFB(card.fd(), id);

	if (fb) {
		m_width = fb->width;
		m_height = fb->height;

		drmModeFreeFB(fb);
	} else {
		m_width = m_height = 0;
	}

	card.m_framebuffers.push_back(this);
}

void Framebuffer::flush()
{
	drmModeClip clip { };
	clip.x1 = clip.y1 = 0;
	clip.x2 = width();
	clip.y2 = height();

	drmModeDirtyFB(card().fd(), id(), &clip, 1);
}

Framebuffer::~Framebuffer()
{
	auto& fbs = card().m_framebuffers;
	auto iter = find(fbs.begin(), fbs.end(), this);
	card().m_framebuffers.erase(iter);
}


}