• Home
Name Date Size #Lines LOC

..--

amdgpu/03-May-2024-4,3422,391

exynos/03-May-2024-2,2721,416

freedreno/03-May-2024-4,1682,687

include/drm/03-May-2024-8,4015,025

intel/03-May-2024-14,41711,375

libkms/03-May-2024-2,0681,428

m4/03-May-2024-65

man/03-May-2024-1,2941,102

nouveau/03-May-2024-3,1922,561

omap/03-May-2024-754505

radeon/03-May-2024-5,8124,602

rockchip/03-May-2024-504255

tegra/03-May-2024-595384

tests/03-May-2024-19,36514,691

.gitignoreD03-May-20241.2 KiB102101

Android.mkD03-May-20242 KiB7028

CleanSpec.mkD03-May-2024311 54

Makefile.amD03-May-20243.2 KiB13892

Makefile.sourcesD03-May-2024783 3935

READMED03-May-20241.6 KiB4230

RELEASINGD03-May-20242.7 KiB6648

autogen.shD03-May-2024232 159

configure.acD03-May-202417.8 KiB544458

libdrm.pc.inD03-May-2024250 119

libdrm_lists.hD03-May-20244.4 KiB11972

libdrm_macros.hD03-May-20242.6 KiB8639

util_double_list.hD03-May-20244.4 KiB13884

util_math.hD03-May-20241.5 KiB358

xf86atomic.hD03-May-20243.8 KiB11864

xf86drm.cD03-May-202476.2 KiB3,2901,988

xf86drm.hD03-May-202429.4 KiB804592

xf86drmHash.cD03-May-20247.2 KiB254147

xf86drmHash.hD03-May-20242 KiB4816

xf86drmMode.cD03-May-202438 KiB1,7171,300

xf86drmMode.hD03-May-202416.4 KiB535314

xf86drmRandom.cD03-May-20244.7 KiB13848

xf86drmRandom.hD03-May-20241.5 KiB369

xf86drmSL.cD03-May-20248.3 KiB319218

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 systes  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  packages 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 install into a system location, you will need to be root to
41perform the install step.
42