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

..--

amdgpu/22-Nov-2023-4,8002,736

etnaviv/22-Nov-2023-1,9241,237

exynos/22-Nov-2023-2,2721,416

freedreno/22-Nov-2023-4,7373,079

include/drm/22-Nov-2023-9,8145,596

intel/22-Nov-2023-15,91512,592

libkms/22-Nov-2023-1,9741,365

m4/22-Nov-2023-65

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

nouveau/22-Nov-2023-3,1992,572

omap/22-Nov-2023-754505

radeon/22-Nov-2023-5,8334,624

rockchip/22-Nov-2023-501256

tegra/22-Nov-2023-593386

tests/22-Nov-2023-21,57216,766

vc4/22-Nov-2023-722499

.editorconfigD22-Nov-2023288 2014

.gitD01-Jan-19700

.gitignoreD22-Nov-20231.4 KiB109108

Android.bpD22-Nov-20232.1 KiB6659

Android.sources.bpD22-Nov-2023229 1311

Android.sources.bp.mkD22-Nov-2023712 2617

CleanSpec.mkD22-Nov-2023490 96

Makefile.amD22-Nov-20233.4 KiB150103

Makefile.sourcesD22-Nov-2023850 4238

READMED22-Nov-20231.6 KiB4230

RELEASINGD22-Nov-20232.1 KiB5238

autogen.shD22-Nov-2023477 2113

configure.acD22-Nov-202318.7 KiB582491

libdrm.pc.inD22-Nov-2023250 119

libdrm_lists.hD22-Nov-20234.4 KiB11972

libdrm_macros.hD22-Nov-20232.6 KiB8639

libsync.hD22-Nov-20233.4 KiB14977

util_double_list.hD22-Nov-20234.6 KiB14488

util_math.hD22-Nov-20231.5 KiB358

xf86atomic.hD22-Nov-20233.8 KiB11864

xf86drm.cD22-Nov-2023100.1 KiB4,1432,616

xf86drm.hD22-Nov-202331 KiB852627

xf86drmHash.cD22-Nov-20237.2 KiB254147

xf86drmHash.hD22-Nov-20232 KiB4816

xf86drmMode.cD22-Nov-202339.1 KiB1,7491,328

xf86drmMode.hD22-Nov-202316.9 KiB548324

xf86drmRandom.cD22-Nov-20234.7 KiB13848

xf86drmRandom.hD22-Nov-20231.5 KiB369

xf86drmSL.cD22-Nov-20238.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 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