Home | History | Annotate | only in /external/libdrm
Up to higher level directory
NameDateSize
.editorconfig21-Aug-2018288
amdgpu/21-Aug-2018
Android.bp21-Aug-20182.1K
Android.sources.bp21-Aug-2018229
Android.sources.bp.mk21-Aug-2018712
autogen.sh21-Aug-2018477
CleanSpec.mk21-Aug-2018490
configure.ac21-Aug-201818.7K
etnaviv/21-Aug-2018
exynos/21-Aug-2018
freedreno/21-Aug-2018
include/21-Aug-2018
intel/21-Aug-2018
libdrm.pc.in21-Aug-2018250
libdrm_lists.h21-Aug-20184.4K
libdrm_macros.h21-Aug-20182.6K
libkms/21-Aug-2018
libsync.h21-Aug-20183.4K
m4/21-Aug-2018
Makefile.am21-Aug-20183.4K
Makefile.sources21-Aug-2018850
man/21-Aug-2018
nouveau/21-Aug-2018
omap/21-Aug-2018
radeon/21-Aug-2018
README21-Aug-20181.6K
RELEASING21-Aug-20182.1K
rockchip/21-Aug-2018
tegra/21-Aug-2018
tests/21-Aug-2018
util_double_list.h21-Aug-20184.6K
util_math.h21-Aug-20181.5K
vc4/21-Aug-2018
xf86atomic.h21-Aug-20183.8K
xf86drm.c21-Aug-2018100.1K
xf86drm.h21-Aug-201831K
xf86drmHash.c21-Aug-20187.2K
xf86drmHash.h21-Aug-20182K
xf86drmMode.c21-Aug-201839.1K
xf86drmMode.h21-Aug-201816.9K
xf86drmRandom.c21-Aug-20184.7K
xf86drmRandom.h21-Aug-20181.5K
xf86drmSL.c21-Aug-20188.3K

README

      1 libdrm - userspace library for drm
      2 
      3 This  is libdrm,  a userspace  library for  accessing the  DRM, direct
      4 rendering  manager, on  Linux,  BSD and  other  operating systems that
      5 support the  ioctl interface.  The library  provides wrapper functions
      6 for the  ioctls to avoid  exposing the kernel interface  directly, and
      7 for chipsets with drm memory manager, support for tracking relocations
      8 and  buffers.   libdrm  is  a  low-level library,  typically  used  by
      9 graphics drivers  such as the Mesa  DRI drivers, the  X drivers, libva
     10 and  similar projects.  New  functionality in  the kernel  DRM drivers
     11 typically requires  a new  libdrm, but a  new libdrm will  always work
     12 with an older kernel.
     13 
     14 
     15 Compiling
     16 ---------
     17 
     18 libdrm  is  a  standard  autotools  package and  follows  the  normal
     19 configure, build  and install steps.   The first step is  to configure
     20 the package, which is done by running the configure shell script:
     21 
     22 	./configure
     23 
     24 By default, libdrm  will install into the /usr/local/  prefix.  If you
     25 want  to  install   this  DRM  to  replace  your   system  copy,  pass
     26 --prefix=/usr and  --exec-prefix=/ to configure.  If  you are building
     27 libdrm  from a  git checkout,  you first  need to  run  the autogen.sh
     28 script.  You can  pass any options to autogen.sh  that you would other
     29 wise  pass to configure,  or you  can just  re-run configure  with the
     30 options you need once autogen.sh finishes.
     31 
     32 Next step is to build libdrm:
     33 
     34 	make
     35 
     36 and once make finishes successfully, install the package using
     37 
     38 	make install
     39 
     40 If you are installing into a system location, you will need to be root
     41 to perform the install step.
     42