blob: 0c232c03bceaae7c422150cae763585c3872eee3 (
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
|
#pragma once
#include "drmobject.h"
namespace kms
{
enum class PlaneType
{
Overlay = 0,
Primary = 1,
Cursor = 2,
};
struct PlanePriv;
class Plane : public DrmObject
{
friend class Card;
public:
void print_short() const;
bool supports_crtc(Crtc* crtc) const;
bool supports_format(PixelFormat fmt) const;
PlaneType plane_type() const;
private:
Plane(Card& card, uint32_t id);
~Plane();
PlanePriv* m_priv;
};
}
|