bcc4442008
It is a drm_fb_xrgb8888_to_rgb565() variant which checks the clip rectangle for the destination too. Common code between drm_fb_xrgb8888_to_rgb565() and drm_fb_xrgb8888_to_rgb565_dstclip() was factored out into the drm_fb_xrgb8888_to_rgb565_lines() helper function. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Noralf Trønnes <noralf@tronnes.org> Link: http://patchwork.freedesktop.org/patch/msgid/20190405095219.9231-4-kraxel@redhat.com
32 lines
1.2 KiB
C
32 lines
1.2 KiB
C
/*
|
|
* Copyright (C) 2016 Noralf Trønnes
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef __LINUX_DRM_FORMAT_HELPER_H
|
|
#define __LINUX_DRM_FORMAT_HELPER_H
|
|
|
|
struct drm_framebuffer;
|
|
struct drm_rect;
|
|
|
|
void drm_fb_memcpy(void *dst, void *vaddr, struct drm_framebuffer *fb,
|
|
struct drm_rect *clip);
|
|
void drm_fb_memcpy_dstclip(void *dst, void *vaddr, struct drm_framebuffer *fb,
|
|
struct drm_rect *clip);
|
|
void drm_fb_swab16(u16 *dst, void *vaddr, struct drm_framebuffer *fb,
|
|
struct drm_rect *clip);
|
|
void drm_fb_xrgb8888_to_rgb565(void *dst, void *vaddr,
|
|
struct drm_framebuffer *fb,
|
|
struct drm_rect *clip, bool swap);
|
|
void drm_fb_xrgb8888_to_rgb565_dstclip(void *dst, unsigned int dst_pitch,
|
|
void *vaddr, struct drm_framebuffer *fb,
|
|
struct drm_rect *clip, bool swap);
|
|
void drm_fb_xrgb8888_to_gray8(u8 *dst, void *vaddr, struct drm_framebuffer *fb,
|
|
struct drm_rect *clip);
|
|
|
|
#endif /* __LINUX_DRM_FORMAT_HELPER_H */
|