blob: 7c1215cde38b515533a0a6777433a14b37c5e3aa (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#pragma once
#include "kms++.h"
namespace kms
{
class MappedBuffer {
public:
MappedBuffer()
{
}
virtual ~MappedBuffer()
{
}
virtual uint32_t width() const = 0;
virtual uint32_t height() const = 0;
virtual PixelFormat format() const = 0;
virtual unsigned num_planes() const = 0;
virtual uint32_t stride(unsigned plane) const = 0;
virtual uint32_t size(unsigned plane) const = 0;
virtual uint32_t offset(unsigned plane) const = 0;
virtual uint8_t* map(unsigned plane) = 0;
};
class MappedDumbBuffer : public MappedBuffer {
public:
MappedDumbBuffer(DumbFramebuffer& dumbfb)
: m_fb(dumbfb)
{
}
virtual ~MappedDumbBuffer()
{
}
uint32_t width() const { return m_fb.width(); }
uint32_t height() const { return m_fb.height(); }
PixelFormat format() const { return m_fb.format(); }
unsigned num_planes() const { return m_fb.num_planes(); }
uint32_t stride(unsigned plane) const { return m_fb.stride(plane); }
uint32_t size(unsigned plane) const { return m_fb.size(plane); }
uint32_t offset(unsigned plane) const { return m_fb.offset(plane); }
uint8_t* map(unsigned plane) { return m_fb.map(plane); }
private:
DumbFramebuffer& m_fb;
};
class MappedCPUBuffer : public MappedBuffer {
public:
MappedCPUBuffer(uint32_t width, uint32_t height, PixelFormat format);
virtual ~MappedCPUBuffer();
MappedCPUBuffer(const MappedCPUBuffer& other) = delete;
MappedCPUBuffer& operator=(const MappedCPUBuffer& other) = delete;
uint32_t width() const { return m_width; }
uint32_t height() const { return m_height; }
PixelFormat format() const { return m_format; }
unsigned num_planes() const { return m_num_planes; }
uint32_t stride(unsigned plane) const { return m_planes[plane].stride; }
uint32_t size(unsigned plane) const { return m_planes[plane].size; }
uint32_t offset(unsigned plane) const { return m_planes[plane].offset; }
uint8_t* map(unsigned plane) { return m_planes[plane].map; }
private:
struct FramebufferPlane {
uint32_t size;
uint32_t stride;
uint32_t offset;
uint8_t *map;
};
uint32_t m_width;
uint32_t m_height;
PixelFormat m_format;
unsigned m_num_planes;
struct FramebufferPlane m_planes[4];
};
}
|