From fa91e51e4a485ab813032ffcbc7d8cb8c96314d5 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Sun, 22 May 2016 23:14:38 +0300 Subject: split py files --- py/pykmstest.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 py/pykmstest.cpp (limited to 'py/pykmstest.cpp') diff --git a/py/pykmstest.cpp b/py/pykmstest.cpp new file mode 100644 index 0000000..781a43a --- /dev/null +++ b/py/pykmstest.cpp @@ -0,0 +1,27 @@ +#include +#include +#include +#include "kmstest.h" + +namespace py = pybind11; + +using namespace kms; +using namespace std; + +void init_pykmstest(py::module &m) +{ + py::class_(m, "RGB") + .def(py::init<>()) + .def(py::init()) + .def(py::init()) + ; + + // Use lambdas to handle IMappedFramebuffer + m.def("draw_test_pattern", [](DumbFramebuffer& fb) { draw_test_pattern(fb); } ); + m.def("draw_color_bar", [](DumbFramebuffer& fb, int old_xpos, int xpos, int width) { + draw_color_bar(fb, old_xpos, xpos, width); + } ); + m.def("draw_rect", [](DumbFramebuffer& fb, uint32_t x, uint32_t y, uint32_t w, uint32_t h, RGB color) { + draw_rect(fb, x, y, w, h, color); + } ); +} -- cgit v1.2.3