|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| amdgpu/ | | 03-May-2024 | - | 4,788 | 2,722 |
| etnaviv/ | | 03-May-2024 | - | 1,914 | 1,224 |
| exynos/ | | 03-May-2024 | - | 2,272 | 1,416 |
| freedreno/ | | 03-May-2024 | - | 4,723 | 3,063 |
| include/drm/ | | 03-May-2024 | - | 9,814 | 5,596 |
| intel/ | | 03-May-2024 | - | 15,905 | 12,557 |
| libkms/ | | 03-May-2024 | - | 1,976 | 1,360 |
| m4/ | | 03-May-2024 | - | 6 | 5 |
| man/ | | 03-May-2024 | - | 1,294 | 1,102 |
| nouveau/ | | 03-May-2024 | - | 3,191 | 2,561 |
| omap/ | | 03-May-2024 | - | 754 | 505 |
| radeon/ | | 03-May-2024 | - | 5,823 | 4,611 |
| rockchip/ | | 03-May-2024 | - | 506 | 256 |
| tegra/ | | 03-May-2024 | - | 597 | 385 |
| tests/ | | 03-May-2024 | - | 21,523 | 16,685 |
| vc4/ | | 03-May-2024 | - | 722 | 499 |
| .editorconfig | D | 03-May-2024 | 288 | 20 | 14 |
| .gitignore | D | 03-May-2024 | 1.4 KiB | 109 | 108 |
| Android.common.mk | D | 03-May-2024 | 417 | 14 | 9 |
| Android.mk | D | 03-May-2024 | 3.5 KiB | 133 | 67 |
| CleanSpec.mk | D | 03-May-2024 | 490 | 9 | 6 |
| Makefile.am | D | 03-May-2024 | 3.4 KiB | 150 | 103 |
| Makefile.sources | D | 03-May-2024 | 850 | 42 | 38 |
| README | D | 03-May-2024 | 1.6 KiB | 42 | 30 |
| RELEASING | D | 03-May-2024 | 2.1 KiB | 52 | 38 |
| autogen.sh | D | 03-May-2024 | 477 | 21 | 13 |
| configure.ac | D | 03-May-2024 | 18.7 KiB | 582 | 491 |
| libdrm.pc.in | D | 03-May-2024 | 250 | 11 | 9 |
| libdrm_lists.h | D | 03-May-2024 | 4.4 KiB | 119 | 72 |
| libdrm_macros.h | D | 03-May-2024 | 2.6 KiB | 86 | 39 |
| libsync.h | D | 03-May-2024 | 3.4 KiB | 149 | 77 |
| util_double_list.h | D | 03-May-2024 | 4.6 KiB | 144 | 88 |
| util_math.h | D | 03-May-2024 | 1.5 KiB | 35 | 8 |
| xf86atomic.h | D | 03-May-2024 | 3.8 KiB | 118 | 64 |
| xf86drm.c | D | 03-May-2024 | 100.1 KiB | 4,143 | 2,616 |
| xf86drm.h | D | 03-May-2024 | 31 KiB | 852 | 627 |
| xf86drmHash.c | D | 03-May-2024 | 7.2 KiB | 254 | 147 |
| xf86drmHash.h | D | 03-May-2024 | 2 KiB | 48 | 16 |
| xf86drmMode.c | D | 03-May-2024 | 39.1 KiB | 1,749 | 1,328 |
| xf86drmMode.h | D | 03-May-2024 | 16.9 KiB | 548 | 324 |
| xf86drmRandom.c | D | 03-May-2024 | 4.7 KiB | 138 | 48 |
| xf86drmRandom.h | D | 03-May-2024 | 1.5 KiB | 36 | 9 |
| xf86drmSL.c | D | 03-May-2024 | 8.3 KiB | 319 | 218 |
README
1libdrm - userspace library for drm
2
3This is libdrm, a userspace library for accessing the DRM, direct
4rendering manager, on Linux, BSD and other operating systems that
5support the ioctl interface. The library provides wrapper functions
6for the ioctls to avoid exposing the kernel interface directly, and
7for chipsets with drm memory manager, support for tracking relocations
8and buffers. libdrm is a low-level library, typically used by
9graphics drivers such as the Mesa DRI drivers, the X drivers, libva
10and similar projects. New functionality in the kernel DRM drivers
11typically requires a new libdrm, but a new libdrm will always work
12with an older kernel.
13
14
15Compiling
16---------
17
18libdrm is a standard autotools package and follows the normal
19configure, build and install steps. The first step is to configure
20the package, which is done by running the configure shell script:
21
22 ./configure
23
24By default, libdrm will install into the /usr/local/ prefix. If you
25want to install this DRM to replace your system copy, pass
26--prefix=/usr and --exec-prefix=/ to configure. If you are building
27libdrm from a git checkout, you first need to run the autogen.sh
28script. You can pass any options to autogen.sh that you would other
29wise pass to configure, or you can just re-run configure with the
30options you need once autogen.sh finishes.
31
32Next step is to build libdrm:
33
34 make
35
36and once make finishes successfully, install the package using
37
38 make install
39
40If you are installing into a system location, you will need to be root
41to perform the install step.
42