summaryrefslogtreecommitdiff
path: root/py/pykmsomap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'py/pykmsomap.cpp')
-rw-r--r--py/pykmsomap.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/py/pykmsomap.cpp b/py/pykmsomap.cpp
deleted file mode 100644
index 525834b..0000000
--- a/py/pykmsomap.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <pybind11/pybind11.h>
-#include <pybind11/stl.h>
-#include <kms++/kms++.h>
-#include <kms++/omap/omapkms++.h>
-
-namespace py = pybind11;
-
-using namespace kms;
-using namespace std;
-
-void init_pykmsomap(py::module &m)
-{
- py::class_<OmapCard>(m, "OmapCard", py::base<Card>())
- .def(py::init<>())
- ;
-
- py::class_<OmapFramebuffer>(m, "OmapFramebuffer", py::base<MappedFramebuffer>())
- .def(py::init<OmapCard&, uint32_t, uint32_t, PixelFormat>(),
- py::keep_alive<1, 2>()) // Keep OmapCard alive until this is destructed
- ;
-}