aboutsummaryrefslogtreecommitdiffstats
blob: 3d43d08a26bb52f4efc9ad5006e3bf79b7a5f33d (plain) (blame)
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
#pragma once

#include "drmobject.h"
#include "pixelformats.h"

namespace kms
{
class IFramebuffer {
public:
	virtual ~IFramebuffer() { }

	virtual uint32_t width() const = 0;
	virtual uint32_t height() const = 0;

	virtual PixelFormat format() const { throw std::runtime_error("not implemented"); }
	virtual unsigned num_planes() const { throw std::runtime_error("not implemented"); }

	virtual uint32_t stride(unsigned plane) const { throw std::runtime_error("not implemented"); }
	virtual uint32_t size(unsigned plane) const { throw std::runtime_error("not implemented"); }
	virtual uint32_t offset(unsigned plane) const { throw std::runtime_error("not implemented"); }
	virtual uint8_t* map(unsigned plane) { throw std::runtime_error("not implemented"); }
	virtual int prime_fd(unsigned plane) { throw std::runtime_error("not implemented"); }
};

class Framebuffer : public DrmObject, public IFramebuffer
{
public:
	Framebuffer(Card& card, uint32_t id);
	virtual ~Framebuffer();

	uint32_t width() const { return m_width; }
	uint32_t height() const { return m_height; }

	void flush();
protected:
	Framebuffer(Card& card, uint32_t width, uint32_t height);

private:
	uint32_t m_width;
	uint32_t m_height;
};

}