aboutsummaryrefslogtreecommitdiff
path: root/kms++/inc/kms++/extframebuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'kms++/inc/kms++/extframebuffer.h')
-rw-r--r--kms++/inc/kms++/extframebuffer.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/kms++/inc/kms++/extframebuffer.h b/kms++/inc/kms++/extframebuffer.h
index f906fb2..00dc9bf 100644
--- a/kms++/inc/kms++/extframebuffer.h
+++ b/kms++/inc/kms++/extframebuffer.h
@@ -1,12 +1,13 @@
#pragma once
+#include <array>
+#include <vector>
+
#include "framebuffer.h"
#include "pixelformats.h"
-#include <vector>
namespace kms
{
-
class ExtFramebuffer : public Framebuffer
{
public:
@@ -32,7 +33,7 @@ private:
uint32_t stride;
uint32_t offset;
uint64_t modifier;
- uint8_t *map;
+ uint8_t* map;
};
unsigned m_num_planes;
@@ -41,4 +42,4 @@ private:
PixelFormat m_format;
};
-}
+} // namespace kms