Home
last modified time | relevance | path

Searched refs:imfill (Results 1 – 12 of 12) sorted by relevance

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RV110X/include/
H A Dim2d.hpp163 #undef imfill
164 IM_API IM_STATUS imfill(rga_buffer_t dst, im_rect rect, int color, int sync = 1, int *release_fence…
H A Dim2d.h384 #define imfill(buf, rect, color, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/samples/fill_demo/src/
H A Drga_fill_demo.cpp105 ret = imfill(dst, dst_rect, 0xff00ff00); in main()
/OK3568_Linux_fs/external/linux-rga/samples/allocator_demo/src/
H A Drga_allocator_dma32_demo.cpp97 ret = imfill(dst, dst_rect, 0xff00ff00); in main()
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/cpp/rga/
H A Dim2d_single.h296 IM_API IM_STATUS imfill(rga_buffer_t dst, im_rect rect, int color, int sync = 1, int *release_fence…
863 #define imfill(buf, rect, color, ...) \ macro
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK3588/include/
H A Dim2d_single.h296 IM_API IM_STATUS imfill(rga_buffer_t dst, im_rect rect, int color, int sync = 1, int *release_fence…
863 #define imfill(buf, rect, color, ...) \ macro
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK356X/include/
H A Dim2d_single.h296 IM_API IM_STATUS imfill(rga_buffer_t dst, im_rect rect, int color, int sync = 1, int *release_fence…
863 #define imfill(buf, rect, color, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/im2d_api/
H A Dim2d_single.h296 IM_API IM_STATUS imfill(rga_buffer_t dst, im_rect rect, int color, int sync = 1, int *release_fence…
863 #define imfill(buf, rect, color, ...) \ macro
/OK3568_Linux_fs/external/linux-rga/im2d_api/src/
H A Dim2d.cpp1250 IM_API IM_STATUS imfill(rga_buffer_t dst, im_rect rect, int color, int sync, int *release_fence_fd)… in imfill() function
1285 ret = imfill(dst, rect_array[i], color, sync, release_fence_fd); in imfillArray()
1306 return imfill(dst, rect, color, sync, release_fence_fd); in imrectangle()
1981 return imfill(dst, rect, color, sync, NULL); in imfill_t()
/OK3568_Linux_fs/external/linux-rga/docs/
H A DRockchip_Developer_Guide_RGA_CN.md771 - **imfill**: 调用RGA实现快速图像填充操作。
1726 #### imfill subsubsection
1729 IM_STATUS imfill(rga_buffer_t dst,
1793 > 通过job_handle向指定的任务中添加图像填充操作,用法和imfill一致。
3288 …d)决定填充颜色,将需要填充的大小在存储dst矩形数据的im_rect结构体中赋值,并将传参转化为对应颜色的16进制数,与存储dst图像数据的rga_buffer_t结构体一同传入imfill()。
3300 /*将im_rect格式的结构体dst_rect、对应颜色的16进制数与rga_buffer_t格式的结构体src、dst一同传入imfill()*/
3301 STATUS = imfill(dst, dst_rect, COLOR);
H A DRockchip_Developer_Guide_RGA_EN.md764 - **imfill**: Call RGA for fast image filling.
1720 #### imfill subsubsection
1723 IM_STATUS imfill(rga_buffer_t buf,
1787 …ation to the specified job through job_handle. The configuration parameters are the same as imfill.
3056 …to the hexadecimal number of the corresponding color, which is passed to imfill() along with rga_…
3068 …l number of the corresponding color together with src and dst of rga_buffer_t format to imfill().*/
3069 STATUS = imfill(dst, dst_rect, COLOR);
/OK3568_Linux_fs/external/linux-rga/samples/im2d_api_demo/
H A DrgaImDemo.cpp664 STATUS = imfill(dst, dst_rect, COLOR); in main()