Files
MAX_CARLINK_A270S/MXC_A27-PCB4.5-270S/lib/awtk/awtk/src/blend/rotate_image_bgra8888.c
2025-01-21 16:49:37 +08:00

36 lines
1020 B
C

/**
* File: rotate_image_bgra8888.c
* Author: AWTK Develop Team
* Brief: rotate on bgra8888
*
* Copyright (c) 2018 - 2021 Guangzhou ZHIYUAN Electronics Co.,Ltd.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* License file for more details.
*
*/
/**
* History:
* ================================================================
* 2018-10-10 Generated by gen.sh(DONT MODIFY IT)
*
*/
#include "tkc/rect.h"
#include "base/pixel.h"
#include "base/bitmap.h"
#include "base/pixel_pack_unpack.h"
#define pixel_dst_t pixel_bgra8888_t
#define pixel_dst_format pixel_bgra8888_format
#define pixel_dst_to_rgba pixel_bgra8888_to_rgba
#define pixel_dst_from_rgb pixel_bgra8888_from_rgb
#include "rotate_image.inc"
ret_t rotate_bgra8888_image(bitmap_t* fb, bitmap_t* img, const rect_t* src, lcd_orientation_t o) {
return rotate_image(fb, img, src, o);
}