blob: e7cafb65c164677b58ae6b3bb91deff16ae5d539 (
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
|
#pragma once
#include "framebuffer.h"
namespace kms
{
class DumbFramebuffer : public Framebuffer
{
public:
DumbFramebuffer(Card& card, uint32_t width, uint32_t height, const char* fourcc);
virtual ~DumbFramebuffer();
void print_short() const;
uint32_t format() const { return m_format; }
uint8_t* map(unsigned plane) const { return m_planes[plane].map; }
uint32_t stride(unsigned plane) const { return m_planes[plane].stride; }
uint32_t size(unsigned plane) const { return m_planes[plane].size; }
void clear();
private:
struct FramebufferPlane {
uint32_t handle;
uint32_t size;
uint32_t stride;
uint8_t *map;
};
void Create(uint32_t width, uint32_t height, uint32_t format);
void Destroy();
unsigned m_num_planes;
struct FramebufferPlane m_planes[4];
uint32_t m_format;
};
}
|