allwinner_a64/android/external/libdrm
2020-07-15 19:27:51 +08:00
..
amdgpu upload android base code part2 2018-08-08 16:14:42 +08:00
etnaviv upload android base code part2 2018-08-08 16:14:42 +08:00
exynos upload android base code part2 2018-08-08 16:14:42 +08:00
freedreno upload android base code part2 2018-08-08 16:14:42 +08:00
include/drm upload android base code part2 2018-08-08 16:14:42 +08:00
intel update new sdk 2020-07-15 19:27:51 +08:00
libkms upload android base code part2 2018-08-08 16:14:42 +08:00
m4 update new sdk 2020-07-15 19:27:51 +08:00
man upload android base code part2 2018-08-08 16:14:42 +08:00
nouveau upload android base code part2 2018-08-08 16:14:42 +08:00
omap upload android base code part2 2018-08-08 16:14:42 +08:00
radeon upload android base code part2 2018-08-08 16:14:42 +08:00
rockchip upload android base code part2 2018-08-08 16:14:42 +08:00
tegra update new sdk 2020-07-15 19:27:51 +08:00
tests update new sdk 2020-07-15 19:27:51 +08:00
vc4 upload android base code part2 2018-08-08 16:14:42 +08:00
.editorconfig upload android base code part2 2018-08-08 16:14:42 +08:00
.gitignore update new sdk 2020-07-15 19:27:51 +08:00
Android.common.mk upload android base code part2 2018-08-08 16:14:42 +08:00
Android.mk upload android base code part2 2018-08-08 16:14:42 +08:00
autogen.sh upload android base code part2 2018-08-08 16:14:42 +08:00
CleanSpec.mk upload android base code part2 2018-08-08 16:14:42 +08:00
configure.ac upload android base code part2 2018-08-08 16:14:42 +08:00
libdrm.pc.in upload android base code part2 2018-08-08 16:14:42 +08:00
libdrm_lists.h upload android base code part2 2018-08-08 16:14:42 +08:00
libdrm_macros.h upload android base code part2 2018-08-08 16:14:42 +08:00
libsync.h upload android base code part2 2018-08-08 16:14:42 +08:00
Makefile.am upload android base code part2 2018-08-08 16:14:42 +08:00
Makefile.sources upload android base code part2 2018-08-08 16:14:42 +08:00
README upload android base code part2 2018-08-08 16:14:42 +08:00
RELEASING upload android base code part2 2018-08-08 16:14:42 +08:00
util_double_list.h upload android base code part2 2018-08-08 16:14:42 +08:00
util_math.h upload android base code part2 2018-08-08 16:14:42 +08:00
xf86atomic.h upload android base code part2 2018-08-08 16:14:42 +08:00
xf86drm.c upload android base code part2 2018-08-08 16:14:42 +08:00
xf86drm.h upload android base code part2 2018-08-08 16:14:42 +08:00
xf86drmHash.c upload android base code part2 2018-08-08 16:14:42 +08:00
xf86drmHash.h upload android base code part2 2018-08-08 16:14:42 +08:00
xf86drmMode.c upload android base code part2 2018-08-08 16:14:42 +08:00
xf86drmMode.h upload android base code part2 2018-08-08 16:14:42 +08:00
xf86drmRandom.c upload android base code part2 2018-08-08 16:14:42 +08:00
xf86drmRandom.h upload android base code part2 2018-08-08 16:14:42 +08:00
xf86drmSL.c upload android base code part2 2018-08-08 16:14:42 +08:00

libdrm - userspace library for drm

This  is libdrm,  a userspace  library for  accessing the  DRM, direct
rendering  manager, on  Linux,  BSD and  other  operating systems that
support the  ioctl interface.  The library  provides wrapper functions
for the  ioctls to avoid  exposing the kernel interface  directly, and
for chipsets with drm memory manager, support for tracking relocations
and  buffers.   libdrm  is  a  low-level library,  typically  used  by
graphics drivers  such as the Mesa  DRI drivers, the  X drivers, libva
and  similar projects.  New  functionality in  the kernel  DRM drivers
typically requires  a new  libdrm, but a  new libdrm will  always work
with an older kernel.


Compiling
---------

libdrm  is  a  standard  autotools  package and  follows  the  normal
configure, build  and install steps.   The first step is  to configure
the package, which is done by running the configure shell script:

	./configure

By default, libdrm  will install into the /usr/local/  prefix.  If you
want  to  install   this  DRM  to  replace  your   system  copy,  pass
--prefix=/usr and  --exec-prefix=/ to configure.  If  you are building
libdrm  from a  git checkout,  you first  need to  run  the autogen.sh
script.  You can  pass any options to autogen.sh  that you would other
wise  pass to configure,  or you  can just  re-run configure  with the
options you need once autogen.sh finishes.

Next step is to build libdrm:

	make

and once make finishes successfully, install the package using

	make install

If you are installing into a system location, you will need to be root
to perform the install step.