summaryrefslogtreecommitdiff
path: root/kms++/src/mappedframebuffer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kms++/src/mappedframebuffer.cpp')
-rw-r--r--kms++/src/mappedframebuffer.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/kms++/src/mappedframebuffer.cpp b/kms++/src/mappedframebuffer.cpp
new file mode 100644
index 0000000..21e082f
--- /dev/null
+++ b/kms++/src/mappedframebuffer.cpp
@@ -0,0 +1,20 @@
+#include <kms++/kms++.h>
+
+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)
+{
+
+}
+
+}