• Home
Name Date Size #Lines LOC

..--

ext/pybind11/03-May-2024-

kms++/03-May-2024-3,8442,810

kms++util/03-May-2024-4,6823,701

kmscube/03-May-2024-1,6191,116

py/03-May-2024-2,7982,041

scripts/03-May-2024-10880

utils/03-May-2024-2,9852,304

.gitignoreD03-May-202455 87

.gitmodulesD03-May-202494 43

.travis.ymlD03-May-20241.7 KiB8263

Android.bpD03-May-20241.6 KiB6053

CMakeLists.txtD03-May-20242.5 KiB8964

LICENSED03-May-202417.9 KiB410321

LTO.cmakeD03-May-2024791 3324

METADATAD03-May-2024558 2018

MODULE_LICENSE_MPL2D03-May-20240

NOTICED03-May-202417.9 KiB410321

OWNERSD03-May-2024141 43

README.mdD03-May-20242.8 KiB10067

TODOD03-May-2024203 94

README.md

1[![Build Status](https://travis-ci.org/tomba/kmsxx.svg?branch=master)](https://travis-ci.org/tomba/kmsxx)
2
3# kms++ - C++ library for kernel mode setting
4
5kms++ is a C++11 library for kernel mode setting.
6
7Also included are some simple utilities for KMS and python bindings for kms++.
8
9## Utilities
10
11- kmstest - set modes and planes and show test pattern on crtcs/planes, and test page flips
12- kmsprint - print information about DRM objects
13- kmsview - view raw images
14- kmscube - rotating 3D cube on crtcs/planes
15- kmscapture - show captured frames from a camera on screen
16
17## Dependencies:
18
19- libdrm
20- Python 3.x (for python bindings)
21
22## Build instructions:
23
24To build the Python bindings you need to set up the git-submodule for pybind11:
25
26```
27git submodule update --init
28```
29
30And to compile:
31
32```
33$ mkdir build
34$ cd build
35$ cmake ..
36$ make -j4
37```
38
39## Cross compiling instructions:
40
41Directions for cross compiling depend on your environment.
42
43These are for mine with buildroot:
44
45```
46$ mkdir build
47$ cd build
48$ cmake -DCMAKE_TOOLCHAIN_FILE=<buildrootpath>/output/host/usr/share/buildroot/toolchainfile.cmake ..
49$ make -j4
50```
51
52Your environment may provide similar toolchainfile. If not, you can create a toolchainfile of your own, something along these lines:
53
54```
55SET(CMAKE_SYSTEM_NAME Linux)
56
57SET(BROOT "<buildroot>/output/")
58
59# specify the cross compiler
60SET(CMAKE_C_COMPILER   ${BROOT}/host/usr/bin/arm-buildroot-linux-gnueabihf-gcc)
61SET(CMAKE_CXX_COMPILER ${BROOT}/host/usr/bin/arm-buildroot-linux-gnueabihf-g++)
62
63# where is the target environment
64SET(CMAKE_FIND_ROOT_PATH ${BROOT}/target ${BROOT}/host)
65
66SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ONLY)
67SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
68SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
69```
70
71## Build options
72
73You can use the following cmake flags to control the build. Use `-DFLAG=VALUE` to set them.
74
75Option name           | Values          | Default         | Notes
76--------------------- | -------------   | --------------- | --------
77CMAKE_BUILD_TYPE      | Release/Debug   | Release         |
78BUILD_SHARED_LIBS     | ON/OFF          | OFF             |
79KMSXX_ENABLE_PYTHON   | ON/OFF          | ON              |
80KMSXX_ENABLE_KMSCUBE  | ON/OFF          | OFF             |
81KMSXX_PYTHON_VERSION  | python3/python2 | python3;python2 | Name of the python pkgconfig file
82
83## Env variables
84
85You can use the following runtime environmental variables to control the behavior of kms++.
86
87Variable                          | Description
88--------------------------------- | -------------
89KMSXX_DISABLE_UNIVERSAL_PLANES    | Set to disable the use of universal planes
90KMSXX_DISABLE_ATOMIC              | Set to disable the use of atomic modesetting
91
92## Python notes
93
94You can run the python code directly from the build dir by defining PYTHONPATH env variable. For example:
95
96```
97PYTHONPATH=build/py py/tests/hpd.py
98
99```
100