diff options
| author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-06-16 17:59:07 +0300 | 
|---|---|---|
| committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-06-16 17:59:12 +0300 | 
| commit | 34e63f641195019e903104c8b9e6eb855efeee2c (patch) | |
| tree | 71054520c956ec9ce9f7a588a913921fa4175b2f /py | |
| parent | a17a7364011f30d40c8ef214addda814c0513fb8 (diff) | |
Support RGB888
Diffstat (limited to 'py')
| -rw-r--r-- | py/pykmsbase.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/py/pykmsbase.cpp b/py/pykmsbase.cpp index c218c81..f1e0c5c 100644 --- a/py/pykmsbase.cpp +++ b/py/pykmsbase.cpp @@ -114,6 +114,8 @@ void init_pykmsbase(py::module &m)  			.value("ARGB8888", PixelFormat::ARGB8888)  			.value("ABGR8888", PixelFormat::ABGR8888) +			.value("RGB888", PixelFormat::RGB888) +  			.value("RGB565", PixelFormat::RGB565)  			; | 
