├── CHANGELOG.md ├── COPYING ├── README.md ├── docs ├── RGA_FAQ.assets │ ├── image-alpha-0x0.png │ ├── image-alpha-abnormal.png │ ├── image-alpha-normal.png │ ├── image-blend.png │ ├── image-cache-abnormal.png │ ├── image-color-abnormal.png │ ├── image-normal.png │ ├── image-resize-abnormal.png │ ├── image-rotate-90-abnormal.png │ └── image-rotate-90-normal.png ├── Rockchip_Developer_Guide_RGA_CN.md ├── Rockchip_Developer_Guide_RGA_EN.md ├── Rockchip_FAQ_RGA_CN.md └── Rockchip_FAQ_RGA_EN.md ├── include ├── GrallocOps.h ├── RgaApi.h ├── RgaMutex.h ├── RgaSingleton.h ├── RgaUtils.h ├── RockchipRga.h ├── drmrga.h ├── im2d.h ├── im2d.hpp ├── im2d_buffer.h ├── im2d_common.h ├── im2d_expand.h ├── im2d_mpi.h ├── im2d_single.h ├── im2d_task.h ├── im2d_type.h ├── im2d_version.h └── rga.h ├── libs ├── AndroidNdk │ ├── arm64-v8a │ │ ├── librga.a │ │ └── librga.so │ └── armeabi-v7a │ │ ├── librga.a │ │ └── librga.so └── Linux │ ├── gcc-aarch64 │ ├── librga.a │ └── librga.so │ ├── gcc-armhf-c │ ├── librga.a │ └── librga.so │ ├── gcc-armhf │ ├── librga.a │ └── librga.so │ ├── gcc-uclib-armhf-c │ ├── librga.a │ └── librga.so │ └── gcc-uclib-armhf │ ├── librga.a │ └── librga.so ├── samples ├── CMakeLists.txt ├── README.md ├── SConscript ├── allocator_demo │ ├── Android.mk │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux-rv1106-1103.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── rga_allocator_1106_cma_demo.cpp │ │ ├── rga_allocator_dma32_demo.cpp │ │ ├── rga_allocator_dma_cache_demo.cpp │ │ ├── rga_allocator_dma_demo.cpp │ │ ├── rga_allocator_drm_demo.cpp │ │ ├── rga_allocator_drm_phy_demo.cpp │ │ ├── rga_allocator_graphicbuffer_demo.cpp │ │ └── rga_allocator_malloc_demo.cpp ├── alpha_demo │ ├── Android.mk │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── rga_alpha_3channel_demo.cpp │ │ ├── rga_alpha_colorkey_demo.cpp │ │ ├── rga_alpha_demo.cpp │ │ ├── rga_alpha_global_alpha_demo.cpp │ │ ├── rga_alpha_osd_demo.cpp │ │ ├── rga_alpha_rgba5551_demo.cpp │ │ └── rga_alpha_yuv_demo.cpp ├── async_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ └── rga_async_demo.cpp ├── cmake-android.sh ├── cmake-linux.sh ├── config_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── rga_config_single_core_demo.cpp │ │ └── rga_config_thread_core_demo.cpp ├── copy_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── rga_copy_demo.cpp │ │ ├── rga_copy_fbc_demo.cpp │ │ ├── rga_copy_splice_c_demo.c │ │ ├── rga_copy_splice_demo.cpp │ │ ├── rga_copy_splice_task_demo.cpp │ │ └── rga_copy_tile_demo.cpp ├── crop_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── rga_crop_demo.cpp │ │ └── rga_crop_rect_demo.cpp ├── cvtcolor_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── rga_cvtcolor_csc_demo.cpp │ │ ├── rga_cvtcolor_demo.cpp │ │ └── rga_cvtcolor_gray256_demo.cpp ├── fill_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── rga_fill_demo.cpp │ │ ├── rga_fill_rectangle_array_demo.cpp │ │ ├── rga_fill_rectangle_demo.cpp │ │ ├── rga_fill_rectangle_task_array_demo.cpp │ │ └── rga_fill_rectangle_task_demo.cpp ├── gauss_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux-uclibc.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── rga_gauss_demo.cpp │ │ └── rga_gauss_matrix_demo.cpp ├── im2d_api_demo │ ├── Android.mk │ ├── CMakeLists.txt │ ├── README.md │ ├── args.cpp │ ├── args.h │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── rgaImDemo.cpp ├── mosaic_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ └── rga_mosaic_demo.cpp ├── padding_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ └── rga_padding_demo.cpp ├── palette_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ └── rga_palette_demo.cpp ├── resize_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── rga_resize_config_interpolation_demo.cpp │ │ ├── rga_resize_demo.cpp │ │ ├── rga_resize_rect_demo.cpp │ │ └── rga_resize_uv_downsampling_demo.cpp ├── rop_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ └── rga_rop_demo.cpp ├── sample_file │ ├── README.txt │ ├── in0w1280-h720-rgba8888.bin │ └── in1w1280-h720-rgba8888.bin ├── transform_demo │ ├── CMakeLists.txt │ ├── cmake-android.sh │ ├── cmake-linux.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── rga_transform_center_rotate_demo.cpp │ │ ├── rga_transform_flip_demo.cpp │ │ ├── rga_transform_rotate_demo.cpp │ │ └── rga_transform_rotate_flip_demo.cpp └── utils │ ├── 3rdparty │ ├── 3rdparty.mk │ ├── CMakeLists.txt │ └── libdrm │ │ ├── include │ │ ├── libdrm │ │ │ ├── drm.h │ │ │ ├── drm_fourcc.h │ │ │ └── drm_mode.h │ │ └── xf86drm.h │ │ └── lib │ │ ├── android │ │ ├── arm32 │ │ │ └── libdrm.so │ │ └── arm64 │ │ │ └── libdrm.so │ │ ├── arm32 │ │ └── libdrm.so │ │ └── arm64 │ │ └── libdrm.so │ ├── CMakeLists.txt │ ├── allocator │ ├── CMakeLists.txt │ ├── allocator.mk │ ├── dma_alloc.cpp │ ├── drm_alloc.cpp │ └── include │ │ ├── dma_alloc.h │ │ └── drm_alloc.h │ ├── utils.cpp │ ├── utils.h │ └── utils.mk ├── toolchains ├── toolchain_android_ndk.cmake ├── toolchain_linux.cmake ├── toolchain_linux_1106.cmake └── toolchain_rt_thread.cmake └── tools └── bin ├── AndroidNdk ├── arm64-v8a │ └── rgaImDemo └── armeabi-v7a │ └── rgaImDemo └── Linux ├── gcc-aarch64 └── rgaImDemo ├── gcc-armhf-c └── rgaImDemo ├── gcc-armhf └── rgaImDemo ├── gcc-uclib-armhf-c └── rgaImDemo └── gcc-uclib-armhf └── rgaImDemo /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/README.md -------------------------------------------------------------------------------- /docs/RGA_FAQ.assets/image-alpha-0x0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/RGA_FAQ.assets/image-alpha-0x0.png -------------------------------------------------------------------------------- /docs/RGA_FAQ.assets/image-alpha-abnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/RGA_FAQ.assets/image-alpha-abnormal.png -------------------------------------------------------------------------------- /docs/RGA_FAQ.assets/image-alpha-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/RGA_FAQ.assets/image-alpha-normal.png -------------------------------------------------------------------------------- /docs/RGA_FAQ.assets/image-blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/RGA_FAQ.assets/image-blend.png -------------------------------------------------------------------------------- /docs/RGA_FAQ.assets/image-cache-abnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/RGA_FAQ.assets/image-cache-abnormal.png -------------------------------------------------------------------------------- /docs/RGA_FAQ.assets/image-color-abnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/RGA_FAQ.assets/image-color-abnormal.png -------------------------------------------------------------------------------- /docs/RGA_FAQ.assets/image-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/RGA_FAQ.assets/image-normal.png -------------------------------------------------------------------------------- /docs/RGA_FAQ.assets/image-resize-abnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/RGA_FAQ.assets/image-resize-abnormal.png -------------------------------------------------------------------------------- /docs/RGA_FAQ.assets/image-rotate-90-abnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/RGA_FAQ.assets/image-rotate-90-abnormal.png -------------------------------------------------------------------------------- /docs/RGA_FAQ.assets/image-rotate-90-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/RGA_FAQ.assets/image-rotate-90-normal.png -------------------------------------------------------------------------------- /docs/Rockchip_Developer_Guide_RGA_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/Rockchip_Developer_Guide_RGA_CN.md -------------------------------------------------------------------------------- /docs/Rockchip_Developer_Guide_RGA_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/Rockchip_Developer_Guide_RGA_EN.md -------------------------------------------------------------------------------- /docs/Rockchip_FAQ_RGA_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/Rockchip_FAQ_RGA_CN.md -------------------------------------------------------------------------------- /docs/Rockchip_FAQ_RGA_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/docs/Rockchip_FAQ_RGA_EN.md -------------------------------------------------------------------------------- /include/GrallocOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/GrallocOps.h -------------------------------------------------------------------------------- /include/RgaApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/RgaApi.h -------------------------------------------------------------------------------- /include/RgaMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/RgaMutex.h -------------------------------------------------------------------------------- /include/RgaSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/RgaSingleton.h -------------------------------------------------------------------------------- /include/RgaUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/RgaUtils.h -------------------------------------------------------------------------------- /include/RockchipRga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/RockchipRga.h -------------------------------------------------------------------------------- /include/drmrga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/drmrga.h -------------------------------------------------------------------------------- /include/im2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/im2d.h -------------------------------------------------------------------------------- /include/im2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/im2d.hpp -------------------------------------------------------------------------------- /include/im2d_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/im2d_buffer.h -------------------------------------------------------------------------------- /include/im2d_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/im2d_common.h -------------------------------------------------------------------------------- /include/im2d_expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/im2d_expand.h -------------------------------------------------------------------------------- /include/im2d_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/im2d_mpi.h -------------------------------------------------------------------------------- /include/im2d_single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/im2d_single.h -------------------------------------------------------------------------------- /include/im2d_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/im2d_task.h -------------------------------------------------------------------------------- /include/im2d_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/im2d_type.h -------------------------------------------------------------------------------- /include/im2d_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/im2d_version.h -------------------------------------------------------------------------------- /include/rga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/include/rga.h -------------------------------------------------------------------------------- /libs/AndroidNdk/arm64-v8a/librga.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/AndroidNdk/arm64-v8a/librga.a -------------------------------------------------------------------------------- /libs/AndroidNdk/arm64-v8a/librga.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/AndroidNdk/arm64-v8a/librga.so -------------------------------------------------------------------------------- /libs/AndroidNdk/armeabi-v7a/librga.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/AndroidNdk/armeabi-v7a/librga.a -------------------------------------------------------------------------------- /libs/AndroidNdk/armeabi-v7a/librga.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/AndroidNdk/armeabi-v7a/librga.so -------------------------------------------------------------------------------- /libs/Linux/gcc-aarch64/librga.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/Linux/gcc-aarch64/librga.a -------------------------------------------------------------------------------- /libs/Linux/gcc-aarch64/librga.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/Linux/gcc-aarch64/librga.so -------------------------------------------------------------------------------- /libs/Linux/gcc-armhf-c/librga.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/Linux/gcc-armhf-c/librga.a -------------------------------------------------------------------------------- /libs/Linux/gcc-armhf-c/librga.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/Linux/gcc-armhf-c/librga.so -------------------------------------------------------------------------------- /libs/Linux/gcc-armhf/librga.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/Linux/gcc-armhf/librga.a -------------------------------------------------------------------------------- /libs/Linux/gcc-armhf/librga.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/Linux/gcc-armhf/librga.so -------------------------------------------------------------------------------- /libs/Linux/gcc-uclib-armhf-c/librga.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/Linux/gcc-uclib-armhf-c/librga.a -------------------------------------------------------------------------------- /libs/Linux/gcc-uclib-armhf-c/librga.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/Linux/gcc-uclib-armhf-c/librga.so -------------------------------------------------------------------------------- /libs/Linux/gcc-uclib-armhf/librga.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/Linux/gcc-uclib-armhf/librga.a -------------------------------------------------------------------------------- /libs/Linux/gcc-uclib-armhf/librga.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/libs/Linux/gcc-uclib-armhf/librga.so -------------------------------------------------------------------------------- /samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/CMakeLists.txt -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/SConscript -------------------------------------------------------------------------------- /samples/allocator_demo/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/Android.mk -------------------------------------------------------------------------------- /samples/allocator_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/allocator_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/allocator_demo/cmake-linux-rv1106-1103.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/cmake-linux-rv1106-1103.sh -------------------------------------------------------------------------------- /samples/allocator_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/allocator_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/allocator_demo/src/rga_allocator_1106_cma_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/src/rga_allocator_1106_cma_demo.cpp -------------------------------------------------------------------------------- /samples/allocator_demo/src/rga_allocator_dma32_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/src/rga_allocator_dma32_demo.cpp -------------------------------------------------------------------------------- /samples/allocator_demo/src/rga_allocator_dma_cache_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/src/rga_allocator_dma_cache_demo.cpp -------------------------------------------------------------------------------- /samples/allocator_demo/src/rga_allocator_dma_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/src/rga_allocator_dma_demo.cpp -------------------------------------------------------------------------------- /samples/allocator_demo/src/rga_allocator_drm_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/src/rga_allocator_drm_demo.cpp -------------------------------------------------------------------------------- /samples/allocator_demo/src/rga_allocator_drm_phy_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/src/rga_allocator_drm_phy_demo.cpp -------------------------------------------------------------------------------- /samples/allocator_demo/src/rga_allocator_graphicbuffer_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/src/rga_allocator_graphicbuffer_demo.cpp -------------------------------------------------------------------------------- /samples/allocator_demo/src/rga_allocator_malloc_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/allocator_demo/src/rga_allocator_malloc_demo.cpp -------------------------------------------------------------------------------- /samples/alpha_demo/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/Android.mk -------------------------------------------------------------------------------- /samples/alpha_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/alpha_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/alpha_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/alpha_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/alpha_demo/src/rga_alpha_3channel_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/src/rga_alpha_3channel_demo.cpp -------------------------------------------------------------------------------- /samples/alpha_demo/src/rga_alpha_colorkey_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/src/rga_alpha_colorkey_demo.cpp -------------------------------------------------------------------------------- /samples/alpha_demo/src/rga_alpha_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/src/rga_alpha_demo.cpp -------------------------------------------------------------------------------- /samples/alpha_demo/src/rga_alpha_global_alpha_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/src/rga_alpha_global_alpha_demo.cpp -------------------------------------------------------------------------------- /samples/alpha_demo/src/rga_alpha_osd_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/src/rga_alpha_osd_demo.cpp -------------------------------------------------------------------------------- /samples/alpha_demo/src/rga_alpha_rgba5551_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/src/rga_alpha_rgba5551_demo.cpp -------------------------------------------------------------------------------- /samples/alpha_demo/src/rga_alpha_yuv_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/alpha_demo/src/rga_alpha_yuv_demo.cpp -------------------------------------------------------------------------------- /samples/async_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/async_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/async_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/async_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/async_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/async_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/async_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/async_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/async_demo/src/rga_async_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/async_demo/src/rga_async_demo.cpp -------------------------------------------------------------------------------- /samples/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/cmake-android.sh -------------------------------------------------------------------------------- /samples/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/cmake-linux.sh -------------------------------------------------------------------------------- /samples/config_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/config_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/config_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/config_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/config_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/config_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/config_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/config_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/config_demo/src/rga_config_single_core_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/config_demo/src/rga_config_single_core_demo.cpp -------------------------------------------------------------------------------- /samples/config_demo/src/rga_config_thread_core_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/config_demo/src/rga_config_thread_core_demo.cpp -------------------------------------------------------------------------------- /samples/copy_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/copy_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/copy_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/copy_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/copy_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/copy_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/copy_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/copy_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/copy_demo/src/rga_copy_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/copy_demo/src/rga_copy_demo.cpp -------------------------------------------------------------------------------- /samples/copy_demo/src/rga_copy_fbc_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/copy_demo/src/rga_copy_fbc_demo.cpp -------------------------------------------------------------------------------- /samples/copy_demo/src/rga_copy_splice_c_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/copy_demo/src/rga_copy_splice_c_demo.c -------------------------------------------------------------------------------- /samples/copy_demo/src/rga_copy_splice_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/copy_demo/src/rga_copy_splice_demo.cpp -------------------------------------------------------------------------------- /samples/copy_demo/src/rga_copy_splice_task_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/copy_demo/src/rga_copy_splice_task_demo.cpp -------------------------------------------------------------------------------- /samples/copy_demo/src/rga_copy_tile_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/copy_demo/src/rga_copy_tile_demo.cpp -------------------------------------------------------------------------------- /samples/crop_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/crop_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/crop_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/crop_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/crop_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/crop_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/crop_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/crop_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/crop_demo/src/rga_crop_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/crop_demo/src/rga_crop_demo.cpp -------------------------------------------------------------------------------- /samples/crop_demo/src/rga_crop_rect_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/crop_demo/src/rga_crop_rect_demo.cpp -------------------------------------------------------------------------------- /samples/cvtcolor_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/cvtcolor_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/cvtcolor_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/cvtcolor_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/cvtcolor_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/cvtcolor_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/cvtcolor_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/cvtcolor_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/cvtcolor_demo/src/rga_cvtcolor_csc_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/cvtcolor_demo/src/rga_cvtcolor_csc_demo.cpp -------------------------------------------------------------------------------- /samples/cvtcolor_demo/src/rga_cvtcolor_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/cvtcolor_demo/src/rga_cvtcolor_demo.cpp -------------------------------------------------------------------------------- /samples/cvtcolor_demo/src/rga_cvtcolor_gray256_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/cvtcolor_demo/src/rga_cvtcolor_gray256_demo.cpp -------------------------------------------------------------------------------- /samples/fill_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/fill_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/fill_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/fill_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/fill_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/fill_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/fill_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/fill_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/fill_demo/src/rga_fill_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/fill_demo/src/rga_fill_demo.cpp -------------------------------------------------------------------------------- /samples/fill_demo/src/rga_fill_rectangle_array_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/fill_demo/src/rga_fill_rectangle_array_demo.cpp -------------------------------------------------------------------------------- /samples/fill_demo/src/rga_fill_rectangle_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/fill_demo/src/rga_fill_rectangle_demo.cpp -------------------------------------------------------------------------------- /samples/fill_demo/src/rga_fill_rectangle_task_array_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/fill_demo/src/rga_fill_rectangle_task_array_demo.cpp -------------------------------------------------------------------------------- /samples/fill_demo/src/rga_fill_rectangle_task_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/fill_demo/src/rga_fill_rectangle_task_demo.cpp -------------------------------------------------------------------------------- /samples/gauss_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/gauss_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/gauss_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/gauss_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/gauss_demo/cmake-linux-uclibc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/gauss_demo/cmake-linux-uclibc.sh -------------------------------------------------------------------------------- /samples/gauss_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/gauss_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/gauss_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/gauss_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/gauss_demo/src/rga_gauss_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/gauss_demo/src/rga_gauss_demo.cpp -------------------------------------------------------------------------------- /samples/gauss_demo/src/rga_gauss_matrix_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/gauss_demo/src/rga_gauss_matrix_demo.cpp -------------------------------------------------------------------------------- /samples/im2d_api_demo/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/im2d_api_demo/Android.mk -------------------------------------------------------------------------------- /samples/im2d_api_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/im2d_api_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/im2d_api_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/im2d_api_demo/README.md -------------------------------------------------------------------------------- /samples/im2d_api_demo/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/im2d_api_demo/args.cpp -------------------------------------------------------------------------------- /samples/im2d_api_demo/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/im2d_api_demo/args.h -------------------------------------------------------------------------------- /samples/im2d_api_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/im2d_api_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/im2d_api_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/im2d_api_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/im2d_api_demo/rgaImDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/im2d_api_demo/rgaImDemo.cpp -------------------------------------------------------------------------------- /samples/mosaic_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/mosaic_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mosaic_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/mosaic_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/mosaic_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/mosaic_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/mosaic_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/mosaic_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/mosaic_demo/src/rga_mosaic_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/mosaic_demo/src/rga_mosaic_demo.cpp -------------------------------------------------------------------------------- /samples/padding_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/padding_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/padding_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/padding_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/padding_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/padding_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/padding_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/padding_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/padding_demo/src/rga_padding_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/padding_demo/src/rga_padding_demo.cpp -------------------------------------------------------------------------------- /samples/palette_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/palette_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/palette_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/palette_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/palette_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/palette_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/palette_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/palette_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/palette_demo/src/rga_palette_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/palette_demo/src/rga_palette_demo.cpp -------------------------------------------------------------------------------- /samples/resize_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/resize_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/resize_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/resize_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/resize_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/resize_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/resize_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/resize_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/resize_demo/src/rga_resize_config_interpolation_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/resize_demo/src/rga_resize_config_interpolation_demo.cpp -------------------------------------------------------------------------------- /samples/resize_demo/src/rga_resize_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/resize_demo/src/rga_resize_demo.cpp -------------------------------------------------------------------------------- /samples/resize_demo/src/rga_resize_rect_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/resize_demo/src/rga_resize_rect_demo.cpp -------------------------------------------------------------------------------- /samples/resize_demo/src/rga_resize_uv_downsampling_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/resize_demo/src/rga_resize_uv_downsampling_demo.cpp -------------------------------------------------------------------------------- /samples/rop_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/rop_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/rop_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/rop_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/rop_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/rop_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/rop_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/rop_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/rop_demo/src/rga_rop_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/rop_demo/src/rga_rop_demo.cpp -------------------------------------------------------------------------------- /samples/sample_file/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/sample_file/README.txt -------------------------------------------------------------------------------- /samples/sample_file/in0w1280-h720-rgba8888.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/sample_file/in0w1280-h720-rgba8888.bin -------------------------------------------------------------------------------- /samples/sample_file/in1w1280-h720-rgba8888.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/sample_file/in1w1280-h720-rgba8888.bin -------------------------------------------------------------------------------- /samples/transform_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/transform_demo/CMakeLists.txt -------------------------------------------------------------------------------- /samples/transform_demo/cmake-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/transform_demo/cmake-android.sh -------------------------------------------------------------------------------- /samples/transform_demo/cmake-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/transform_demo/cmake-linux.sh -------------------------------------------------------------------------------- /samples/transform_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/transform_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/transform_demo/src/rga_transform_center_rotate_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/transform_demo/src/rga_transform_center_rotate_demo.cpp -------------------------------------------------------------------------------- /samples/transform_demo/src/rga_transform_flip_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/transform_demo/src/rga_transform_flip_demo.cpp -------------------------------------------------------------------------------- /samples/transform_demo/src/rga_transform_rotate_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/transform_demo/src/rga_transform_rotate_demo.cpp -------------------------------------------------------------------------------- /samples/transform_demo/src/rga_transform_rotate_flip_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/transform_demo/src/rga_transform_rotate_flip_demo.cpp -------------------------------------------------------------------------------- /samples/utils/3rdparty/3rdparty.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/3rdparty/3rdparty.mk -------------------------------------------------------------------------------- /samples/utils/3rdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/3rdparty/CMakeLists.txt -------------------------------------------------------------------------------- /samples/utils/3rdparty/libdrm/include/libdrm/drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/3rdparty/libdrm/include/libdrm/drm.h -------------------------------------------------------------------------------- /samples/utils/3rdparty/libdrm/include/libdrm/drm_fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/3rdparty/libdrm/include/libdrm/drm_fourcc.h -------------------------------------------------------------------------------- /samples/utils/3rdparty/libdrm/include/libdrm/drm_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/3rdparty/libdrm/include/libdrm/drm_mode.h -------------------------------------------------------------------------------- /samples/utils/3rdparty/libdrm/include/xf86drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/3rdparty/libdrm/include/xf86drm.h -------------------------------------------------------------------------------- /samples/utils/3rdparty/libdrm/lib/android/arm32/libdrm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/3rdparty/libdrm/lib/android/arm32/libdrm.so -------------------------------------------------------------------------------- /samples/utils/3rdparty/libdrm/lib/android/arm64/libdrm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/3rdparty/libdrm/lib/android/arm64/libdrm.so -------------------------------------------------------------------------------- /samples/utils/3rdparty/libdrm/lib/arm32/libdrm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/3rdparty/libdrm/lib/arm32/libdrm.so -------------------------------------------------------------------------------- /samples/utils/3rdparty/libdrm/lib/arm64/libdrm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/3rdparty/libdrm/lib/arm64/libdrm.so -------------------------------------------------------------------------------- /samples/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/CMakeLists.txt -------------------------------------------------------------------------------- /samples/utils/allocator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/allocator/CMakeLists.txt -------------------------------------------------------------------------------- /samples/utils/allocator/allocator.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/allocator/allocator.mk -------------------------------------------------------------------------------- /samples/utils/allocator/dma_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/allocator/dma_alloc.cpp -------------------------------------------------------------------------------- /samples/utils/allocator/drm_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/allocator/drm_alloc.cpp -------------------------------------------------------------------------------- /samples/utils/allocator/include/dma_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/allocator/include/dma_alloc.h -------------------------------------------------------------------------------- /samples/utils/allocator/include/drm_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/allocator/include/drm_alloc.h -------------------------------------------------------------------------------- /samples/utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/utils.cpp -------------------------------------------------------------------------------- /samples/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/utils.h -------------------------------------------------------------------------------- /samples/utils/utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/samples/utils/utils.mk -------------------------------------------------------------------------------- /toolchains/toolchain_android_ndk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/toolchains/toolchain_android_ndk.cmake -------------------------------------------------------------------------------- /toolchains/toolchain_linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/toolchains/toolchain_linux.cmake -------------------------------------------------------------------------------- /toolchains/toolchain_linux_1106.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/toolchains/toolchain_linux_1106.cmake -------------------------------------------------------------------------------- /toolchains/toolchain_rt_thread.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/toolchains/toolchain_rt_thread.cmake -------------------------------------------------------------------------------- /tools/bin/AndroidNdk/arm64-v8a/rgaImDemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/tools/bin/AndroidNdk/arm64-v8a/rgaImDemo -------------------------------------------------------------------------------- /tools/bin/AndroidNdk/armeabi-v7a/rgaImDemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/tools/bin/AndroidNdk/armeabi-v7a/rgaImDemo -------------------------------------------------------------------------------- /tools/bin/Linux/gcc-aarch64/rgaImDemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/tools/bin/Linux/gcc-aarch64/rgaImDemo -------------------------------------------------------------------------------- /tools/bin/Linux/gcc-armhf-c/rgaImDemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/tools/bin/Linux/gcc-armhf-c/rgaImDemo -------------------------------------------------------------------------------- /tools/bin/Linux/gcc-armhf/rgaImDemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/tools/bin/Linux/gcc-armhf/rgaImDemo -------------------------------------------------------------------------------- /tools/bin/Linux/gcc-uclib-armhf-c/rgaImDemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/tools/bin/Linux/gcc-uclib-armhf-c/rgaImDemo -------------------------------------------------------------------------------- /tools/bin/Linux/gcc-uclib-armhf/rgaImDemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airockchip/librga/HEAD/tools/bin/Linux/gcc-uclib-armhf/rgaImDemo --------------------------------------------------------------------------------