projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e86e894
)
drm: Describe pixel_blend_mode in drm_plane_state
author
Sean Paul
<
[email protected]
>
Fri, 31 Aug 2018 15:09:25 +0000
(11:09 -0400)
committer
Sean Paul
<
[email protected]
>
Fri, 31 Aug 2018 15:37:39 +0000
(11:37 -0400)
Adds docs for pixel_blend_mode in drm_plane_state. Fixes the warning
found by kbuild test robot:
htmldocs: include/drm/drm_plane.h:189: warning: Function parameter or member 'pixel_blend_mode' not described in 'drm_plane_state'
Cc: Daniel Vetter <
[email protected]
>
Cc: Lowry Li <
[email protected]
>
Reviewed-by: Maarten Lankhorst <
[email protected]
>
Signed-off-by: Sean Paul <
[email protected]
>
Link:
https://patchwork.freedesktop.org/patch/msgid/
[email protected]
include/drm/drm_plane.h
patch
|
blob
|
history
diff --git
a/include/drm/drm_plane.h
b/include/drm/drm_plane.h
index 35ef64a9398ba3ec0bea3bb21cfe697f3a6bf84c..16f5b66684ca4b1e55a4de9cec26243bea149768 100644
(file)
--- a/
include/drm/drm_plane.h
+++ b/
include/drm/drm_plane.h
@@
-117,6
+117,13
@@
struct drm_plane_state {
* details.
*/
u16 alpha;
+
+ /**
+ * @pixel_blend_mode:
+ * The alpha blending equation selection, describing how the pixels from
+ * the current plane are composited with the background. Value can be
+ * one of DRM_MODE_BLEND_*
+ */
uint16_t pixel_blend_mode;
/**