#include using namespace std; namespace kms { MappedFramebuffer::MappedFramebuffer(Card& card, uint32_t id) : Framebuffer(card, id) { } MappedFramebuffer::MappedFramebuffer(Card& card, uint32_t width, uint32_t height) : Framebuffer(card, width, height) { } } om+xml'/>
summaryrefslogtreecommitdiff
blob: dce1754ec6ad2b651bf848aa9db610c02de40646 (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