mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 04:40:09 +01:00
This is the new ioctl wrapper used by the new admgpu driver.
It's primarily used by xf86-video-amdgpu and mesa.
v2: fix amdgpu_drm.h install
v3: Integrate some of the sugestions from Emil:
clean up Makefile.am, configure.ac
capitalize header guards
fix _FILE_OFFSET_BITS with config.h
use drm_mmap/drm_munmap
Remove unused ARRAY_SIZE macro
use shared list implementation
use shared math implementation
use drmGetNodeTypeFromFd helper
v4: remove unused tiling defines
v5: include amdgpu.h in Makefile.am
v6: update amdgpu_drm.h
v7: libdrm.h -> libdrm_macros.h
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
38 lines
783 B
Text
38 lines
783 B
Text
LIBDRM_FILES := \
|
|
xf86drm.c \
|
|
xf86drmHash.c \
|
|
xf86drmHash.h \
|
|
xf86drmRandom.c \
|
|
xf86drmRandom.h \
|
|
xf86drmSL.c \
|
|
xf86drmMode.c \
|
|
xf86atomic.h \
|
|
libdrm_macros.h \
|
|
libdrm_lists.h \
|
|
util_double_list.h \
|
|
util_math.h
|
|
|
|
LIBDRM_H_FILES := \
|
|
xf86drm.h \
|
|
xf86drmMode.h
|
|
|
|
LIBDRM_INCLUDE_H_FILES := \
|
|
include/drm/drm.h \
|
|
include/drm/drm_fourcc.h \
|
|
include/drm/drm_mode.h \
|
|
include/drm/drm_sarea.h \
|
|
include/drm/i915_drm.h \
|
|
include/drm/mach64_drm.h \
|
|
include/drm/mga_drm.h \
|
|
include/drm/nouveau_drm.h \
|
|
include/drm/qxl_drm.h \
|
|
include/drm/r128_drm.h \
|
|
include/drm/radeon_drm.h \
|
|
include/drm/amdgpu_drm.h \
|
|
include/drm/savage_drm.h \
|
|
include/drm/sis_drm.h \
|
|
include/drm/tegra_drm.h \
|
|
include/drm/via_drm.h
|
|
|
|
LIBDRM_INCLUDE_VMWGFX_H_FILES := \
|
|
include/drm/vmwgfx_drm.h
|