search for: vc4_drm

Displaying 6 results from an estimated 6 matches for "vc4_drm".

Did you mean: vc4_drv
2016 Apr 21
0
[PATCH 21/24] drm/vc4: add extern C guard for the UAPI header
Cc: Eric Anholt <eric at anholt.net> Signed-off-by: Emil Velikov <emil.l.velikov at gmail.com> --- include/uapi/drm/vc4_drm.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/uapi/drm/vc4_drm.h b/include/uapi/drm/vc4_drm.h index eeb37e3..af12e8a 100644 --- a/include/uapi/drm/vc4_drm.h +++ b/include/uapi/drm/vc4_drm.h @@ -26,6 +26,10 @@ #include "drm.h" +#if defined(__cplusplus) +extern...
2016 Apr 21
25
[PATCH 00/24] drm: add extern C guard for the UAPI headers
...++ include/uapi/drm/qxl_drm.h | 9 ++++++++- include/uapi/drm/r128_drm.h | 8 ++++++++ include/uapi/drm/radeon_drm.h | 8 ++++++++ include/uapi/drm/savage_drm.h | 8 ++++++++ include/uapi/drm/sis_drm.h | 10 ++++++++++ include/uapi/drm/tegra_drm.h | 8 ++++++++ include/uapi/drm/vc4_drm.h | 8 ++++++++ include/uapi/drm/via_drm.h | 8 ++++++++ include/uapi/drm/virtgpu_drm.h | 8 ++++++++ include/uapi/drm/vmwgfx_drm.h | 9 +++++++++ 24 files changed, 204 insertions(+), 2 deletions(-) -- 2.6.2
2017 Jul 19
0
[ANNOUNCE] libdrm 2.4.82
...d syncobj create/destroy/import/export apis drm/amdgpu: add new low overhead command submission API. (v2) amdgpu: add new symbols to tests. Elliott Hughes (1): Android's major/minor/makedev live in <sys/sysmacros.h> Eric Anholt (1): headers: Update drm_fourcc and vc4_drm.h with new VC4 tiling UAPI. Eric Engestrom (2): headers: sync drm_fourcc.h with airlied/drm-next headers: sync drm_sarea.h with airlied/drm-next Leo Liu (5): tests/amdgpu: rename uvd messages to decode messages tests/amdgpu: separate decode messages tests/amdgpu: mov...
2020 Sep 23
25
[PATCH v3 00/22] Convert all remaining drivers to GEM object functions
The GEM and PRIME related callbacks in struct drm_driver are deprecated in favor of GEM object functions in struct drm_gem_object_funcs. This patchset converts the remaining drivers to object functions and removes most of the obsolete interfaces. Version 3 of this patchset mostly fixes drm_gem_prime_handle_to_fd and updates i.MX's dcss driver. The driver was missing from earlier versions and
2020 Aug 13
28
[PATCH 00/20] Convert all remaining drivers to GEM object functions
The GEM and PRIME related callbacks in struct drm_driver are deprecated in favor of GEM object functions in struct drm_gem_object_funcs. This patchset converts the remaining drivers to object functions and removes most of the obsolete interfaces. Patches #1 to #18 convert DRM drivers to GEM object functions, one by one. Each patch moves existing callbacks from struct drm_driver to an instance of
2020 Sep 15
40
[PATCH v2 00/21] Convert all remaining drivers to GEM object functions
The GEM and PRIME related callbacks in struct drm_driver are deprecated in favor of GEM object functions in struct drm_gem_object_funcs. This patchset converts the remaining drivers to object functions and removes most of the obsolete interfaces. Patches #1 to #16 and #18 to #19 convert DRM drivers to GEM object functions, one by one. Each patch moves existing callbacks from struct drm_driver to