mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-06 17:46:50 +08:00

RGA (Raster Graphic Accelerator) is a 2D graphic accelerator. It is mainly for copy, scaling, color space convertion and rotation. Add rga function with control operation and build-in unit test. Add rga copy function and field duplicate function. Change-Id: I9ce9f877fec5e7b5eaadcfa63b7eb583f194d725 Signed-off-by: sliver.chen <sliver.chen@rock-chips.com>
6 lines
133 B
CMake
6 lines
133 B
CMake
option(ENABLE_VPROC "Enable video process" ON)
|
|
if( ENABLE_VPROC )
|
|
set(HAVE_VPROC true)
|
|
add_definitions(-DHAVE_VPROC)
|
|
endif()
|