summaryrefslogtreecommitdiff
path: root/py/pykmsbase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'py/pykmsbase.cpp')
-rw-r--r--py/pykmsbase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/pykmsbase.cpp b/py/pykmsbase.cpp
index 9f20fdb..5247158 100644
--- a/py/pykmsbase.cpp
+++ b/py/pykmsbase.cpp
@@ -91,6 +91,8 @@ void init_pykmsbase(py::module &m)
;
py::class_<MappedFramebuffer>(m, "MappedFramebuffer", py::base<Framebuffer>())
+ .def_property_readonly("width", &MappedFramebuffer::width)
+ .def_property_readonly("height", &MappedFramebuffer::height)
;
py::class_<DumbFramebuffer>(m, "DumbFramebuffer", py::base<MappedFramebuffer>())
@@ -98,8 +100,6 @@ void init_pykmsbase(py::module &m)
py::keep_alive<1, 2>()) // Keep Card alive until this is destructed
.def(py::init<Card&, uint32_t, uint32_t, PixelFormat>(),
py::keep_alive<1, 2>()) // Keep Card alive until this is destructed
- .def_property_readonly("width", &DumbFramebuffer::width)
- .def_property_readonly("height", &DumbFramebuffer::height)
;
py::enum_<PixelFormat>(m, "PixelFormat")