mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-05 05:27:58 +08:00
30 lines
889 B
C
30 lines
889 B
C
/**
|
|
* File: blend_image_rgba8888_bgra8888.c
|
|
* Author: AWTK Develop Team
|
|
* Brief: blend bgra8888 on rgba8888
|
|
*
|
|
* 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)
|
|
*
|
|
*/
|
|
#ifndef TK_BLEND_IMAGE_RGBA8888_BGRA8888_H
|
|
#define TK_BLEND_IMAGE_RGBA8888_BGRA8888_H
|
|
|
|
#include "base/bitmap.h"
|
|
|
|
ret_t blend_image_rgba8888_bgra8888(bitmap_t* dst, bitmap_t* src, const rect_t* dst_r,
|
|
const rect_t* src_r, uint8_t a);
|
|
|
|
#endif /*TK_BLEND_IMAGE_RGBA8888_BGRA8888_H*/
|