/* * Copyright (C) 2022 Rockchip Electronics Co., Ltd. * Authors: * YuQiaowei * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #define LOG_NDEBUG 0 #undef LOG_TAG #define LOG_TAG "rga_fill_demo" #include #include #include #include #include #include #include #include #include #include "im2d.h" #include "RgaUtils.h" #include "utils.h" #include "dma_alloc.h" #define LOCAL_FILE_PATH "/data" int main(void) { int ret = 0; int dst_width, dst_height, dst_format; int dst_buf_size; char *dst_buf; int dst_dma_fd; rga_buffer_t dst = {}; im_rect dst_rect = {}; rga_buffer_handle_t dst_handle; dst_width = 1280; dst_height = 720; dst_format = RK_FORMAT_RGBA_8888; dst_buf_size = dst_width * dst_height * get_bpp_from_format(dst_format); /* * Allocate dma_buf within 4G from dma32_heap, * return dma_fd and virtual address. * ColorFill can only be used on buffers within 4G. */ ret = dma_buf_alloc(DMA_HEAP_DMA32_UNCACHE_PATCH, dst_buf_size, &dst_dma_fd, (void **)&dst_buf); if (ret < 0) { printf("alloc dma32_heap buffer failed!\n"); return -1; } memset(dst_buf, 0x33, dst_buf_size); /* * Import the allocated dma_fd into RGA by calling * importbuffer_fd, and use the returned buffer_handle * to call RGA to process the image. */ dst_handle = importbuffer_fd(dst_dma_fd, dst_buf_size); if (dst_handle == 0) { printf("import dma_fd error!\n"); ret = -1; goto free_buf; } dst = wrapbuffer_handle(dst_handle, dst_width, dst_height, dst_format); /* * Fills a rectangular area on the dst image with the specified color. dst_image -------------- | ------- | | |color| | | ------- | -------------- */ dst_rect.x = 0; dst_rect.y = 0; dst_rect.width = 300; dst_rect.height = 200; ret = imcheck({}, dst, {}, dst_rect, IM_COLOR_FILL); if (IM_STATUS_NOERROR != ret) { printf("%d, check error! %s", __LINE__, imStrError((IM_STATUS)ret)); goto release_buffer; } ret = imfill(dst, dst_rect, 0xff00ff00); if (ret == IM_STATUS_SUCCESS) { printf("%s running success!\n", LOG_TAG); } else { printf("%s running failed, %s\n", LOG_TAG, imStrError((IM_STATUS)ret)); goto release_buffer; } printf("output [0x%x, 0x%x, 0x%x, 0x%x]\n", dst_buf[0], dst_buf[1], dst_buf[2], dst_buf[3]); write_image_to_file(dst_buf, LOCAL_FILE_PATH, dst_width, dst_height, dst_format, 0); release_buffer: if (dst_handle > 0) releasebuffer_handle(dst_handle); free_buf: dma_buf_free(dst_buf_size, &dst_dma_fd, dst_buf); return 0; }