• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

exynos/22-Nov-2023-1,7771,102

freedreno/22-Nov-2023-4,1782,675

include/drm/22-Nov-2023-6,4963,765

intel/22-Nov-2023-14,37911,339

libkms/22-Nov-2023-2,0301,398

m4/22-Nov-2023-65

man/22-Nov-2023-1,2951,102

nouveau/22-Nov-2023-2,2341,784

omap/22-Nov-2023-716475

radeon/22-Nov-2023-5,7574,553

rockchip/22-Nov-2023-515264

tegra/22-Nov-2023-590385

tests/22-Nov-2023-10,9458,114

.gitD01-Jan-19700

.gitignoreD22-Nov-20231.1 KiB9897

Android.mkD22-Nov-20232.3 KiB7035

CleanSpec.mkD22-Nov-2023222 43

Makefile.amD22-Nov-20232.6 KiB9653

Makefile.sourcesD22-Nov-2023675 3430

READMED22-Nov-20231.6 KiB4230

RELEASINGD22-Nov-20232.8 KiB6749

autogen.shD22-Nov-2023210 74

configure.acD22-Nov-202316 KiB468397

libdrm.hD22-Nov-20232.7 KiB8841

libdrm.pc.inD22-Nov-2023250 119

libdrm_lists.hD22-Nov-20234.4 KiB11972

xf86atomic.hD22-Nov-20233.5 KiB10956

xf86drm.cD22-Nov-202360.1 KiB2,5741,444

xf86drm.hD22-Nov-202327.9 KiB746544

xf86drmHash.cD22-Nov-202312.2 KiB429296

xf86drmMode.cD22-Nov-202331.5 KiB1,4021,040

xf86drmMode.hD22-Nov-202314.9 KiB499293

xf86drmRandom.cD22-Nov-20236.2 KiB209109

xf86drmSL.cD22-Nov-202312.3 KiB478350

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