commit | 51cbdf3d3b4a1290cf2dfb6a9a80d9294ca35804 | [log] [tgz] |
---|---|---|
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | Fri May 27 16:52:23 2016 +0300 |
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | Fri May 27 17:24:14 2016 +0300 |
tree | d7fc0357a32400c972f61a9d6a316012fdd3d0cf | |
parent | 6c5a32ba6ec851f275d6af076e73811426fe4ed5 [diff] |
Crtc: fix get_primary_plane
libkms++ is a C++11 library for kernel mode setting.
Also included are some simple utilities for KMS and python bindings for libkms++.
To build the Python bindings you need to set up the git-submodule for pybind11:
git submodule update --init
And to compile:
$ mkdir build $ cd build $ cmake .. $ make -j4
Directions for cross compiling depend on your environment.
These are for mine with buildroot:
$ mkdir build $ cd build $ cmake -DCMAKE_TOOLCHAIN_FILE=<buildrootpath>/output/host/usr/share/buildroot/toolchainfile.cmake .. $ make -j4
You can use the following cmake flags to control the build. Use -DFLAG=VALUE
to set them.
Option name | Values | Default | Notes |
---|---|---|---|
CMAKE_BUILD_TYPE | Release/Debug | Release | |
LIBKMS_ENABLE_PYTHON | ON/OFF | ON | |
LIBKMS_ENABLE_KMSCUBEĀ | ON/OFF | OFF |
You can use the following runtime environmental variables to control the behavior of libkms.
Variable | Description |
---|---|
LIBKMSXX_DISABLE_UNIVERSAL_PLANES | Set to disable the use of universal planes |
LIBKMSXX_DISABLE_ATOMIC | Set to disable the use of atomic modesetting |