Contributors: 15
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Jani Nikula |
118 |
44.36% |
6 |
18.18% |
Eric Anholt |
48 |
18.05% |
3 |
9.09% |
Chris Wilson |
38 |
14.29% |
7 |
21.21% |
Daniel Vetter |
17 |
6.39% |
2 |
6.06% |
Ville Syrjälä |
8 |
3.01% |
2 |
6.06% |
Dave Airlie |
8 |
3.01% |
2 |
6.06% |
Ander Conselvan de Oliveira |
6 |
2.26% |
1 |
3.03% |
Zou Nan hai |
6 |
2.26% |
1 |
3.03% |
Jesse Barnes |
6 |
2.26% |
3 |
9.09% |
Keith Packard |
4 |
1.50% |
1 |
3.03% |
Maarten Lankhorst |
2 |
0.75% |
1 |
3.03% |
José Roberto de Souza |
2 |
0.75% |
1 |
3.03% |
Rodrigo Vivi |
1 |
0.38% |
1 |
3.03% |
Paulo Zanoni |
1 |
0.38% |
1 |
3.03% |
Imre Deak |
1 |
0.38% |
1 |
3.03% |
Total |
266 |
|
33 |
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2019 Intel Corporation
*/
#ifndef __INTEL_OVERLAY_H__
#define __INTEL_OVERLAY_H__
struct drm_device;
struct drm_file;
struct drm_i915_private;
struct drm_printer;
struct intel_overlay;
struct intel_overlay_error_state;
#ifdef I915
void intel_overlay_setup(struct drm_i915_private *dev_priv);
void intel_overlay_cleanup(struct drm_i915_private *dev_priv);
int intel_overlay_switch_off(struct intel_overlay *overlay);
int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
struct drm_file *file_priv);
int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
struct drm_file *file_priv);
void intel_overlay_reset(struct drm_i915_private *dev_priv);
struct intel_overlay_error_state *
intel_overlay_capture_error_state(struct drm_i915_private *dev_priv);
void intel_overlay_print_error_state(struct drm_printer *p,
struct intel_overlay_error_state *error);
#else
static inline void intel_overlay_setup(struct drm_i915_private *dev_priv)
{
}
static inline void intel_overlay_cleanup(struct drm_i915_private *dev_priv)
{
}
static inline int intel_overlay_switch_off(struct intel_overlay *overlay)
{
return 0;
}
static inline int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
struct drm_file *file_priv)
{
return 0;
}
static inline int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
struct drm_file *file_priv)
{
return 0;
}
static inline void intel_overlay_reset(struct drm_i915_private *dev_priv)
{
}
static inline struct intel_overlay_error_state *
intel_overlay_capture_error_state(struct drm_i915_private *dev_priv)
{
return NULL;
}
static inline void intel_overlay_print_error_state(struct drm_printer *p,
struct intel_overlay_error_state *error)
{
}
#endif
#endif /* __INTEL_OVERLAY_H__ */