Find a file
2024-07-11 21:31:50 -04:00
amdgpu amdgpu: Make amdgpu_cs_signal_semaphore() thread-safe 2024-05-23 18:57:18 +00:00
android
data amdgpu: add new marketing names 2024-07-11 21:31:50 -04:00
etnaviv etnaviv: fix FTBS on undefined linux/* headers on non-Linux platforms. 2024-06-25 10:41:35 +02:00
exynos fix FTBS on FreeBSD (or non-Linux in general) 2024-06-24 17:24:28 +00:00
freedreno freedreno: fix FTBS on non-Linux platforms (unused header) 2024-06-24 17:44:54 +00:00
include/drm Sync headers with drm-next 2024-06-26 08:08:40 +00:00
intel meson: Replace usages of deprecated ExternalProgram.path() 2024-03-29 10:23:52 +00:00
man
nouveau meson: replace deprecated program.path -> program.full_path 2023-10-20 05:21:01 +00:00
omap fix FTBS on FreeBSD (or non-Linux in general) 2024-06-24 17:24:28 +00:00
radeon radeon: fix missing stencil_tile_mode initialisation in the linear/fallback case 2024-01-01 07:43:19 +00:00
tegra include poll.h instead of sys/poll.h 2024-04-10 23:27:16 +00:00
tests fix FTBS on FreeBSD (or non-Linux in general) 2024-06-24 17:24:28 +00:00
vc4
.editorconfig
.gitignore
.gitlab-ci.yml ci: upgrade FreeBSD VM to 14.1 2024-06-25 12:57:01 +02:00
Android.common.mk
Android.mk
CleanSpec.mk
CONTRIBUTING.rst
core-symbols.txt xf86drmMode: add drmModeCloseFB() 2023-11-20 12:55:31 +00:00
gen_table_fourcc.py
libdrm.pc.in
libdrm_lists.h
libdrm_macros.h
libsync.h include poll.h instead of sys/poll.h 2024-04-10 23:27:16 +00:00
Makefile.sources
meson.build Fix FTBS on undefined clock_gettime() and asprintf() 2024-06-27 02:07:00 +02:00
meson_options.txt
README.rst
RELEASING
symbols-check.py symbols-check: Add _fbss, _fdata, _ftext 2024-03-25 15:35:58 +00:00
util_double_list.h
util_math.h
xf86atomic.h
xf86drm.c OpenBSD: fix FTBS on misspelled and missing variables 2024-06-24 12:57:51 +02:00
xf86drm.h xf86drm: document drmDevicesEqual() 2024-04-11 12:11:30 +02:00
xf86drmHash.c
xf86drmHash.h
xf86drmMode.c xf86drmMode: add drmModeCloseFB() 2023-11-20 12:55:31 +00:00
xf86drmMode.h xf86drmMode: add drmModeCloseFB() 2023-11-20 12:55:31 +00:00
xf86drmRandom.c
xf86drmRandom.h
xf86drmSL.c

libdrm - userspace library for drm
----------------------------------

This is libdrm, a userspace library for accessing the DRM, direct rendering
manager, on Linux, BSD and other operating systems that support the ioctl
interface.
The library provides wrapper functions for the ioctls to avoid exposing the
kernel interface directly, and for chipsets with drm memory manager, support
for tracking relocations and buffers.
New functionality in the kernel DRM drivers typically requires a new libdrm,
but a new libdrm will always work with an older kernel.

libdrm is a low-level library, typically used by graphics drivers such as
the Mesa drivers, the X drivers, libva and similar projects.

Syncing with the Linux kernel headers
-------------------------------------

The library should be regularly updated to match the recent changes in the
`include/uapi/drm/`.

libdrm maintains a human-readable version for the token format modifier, with
the simpler ones being extracted automatically from `drm_fourcc.h` header file
with the help of a python script.  This might not always possible, as some of
the vendors require decoding/extracting them programmatically.  For that
reason one can enhance the current vendor functions to include/provide the
newly added token formats, or, in case there's no such decoding
function, to add one that performs the tasks of extracting them.

For simpler format modifier tokens there's a script (gen_table_fourcc.py) that
creates a static table, by going over `drm_fourcc.h` header file. The script
could be further modified if it can't handle new (simpler) token format
modifiers instead of the generated static table.

Compiling
---------

To set up meson:

    meson builddir/

By default this will install into /usr/local, you can change your prefix
with --prefix=/usr (or `meson configure builddir/ -Dprefix=/usr` after 
the initial meson setup).

Then use ninja to build and install:

    ninja -C builddir/ install

If you are installing into a system location you will need to run install
separately, and as root.