CFbAccelARM::paintRect readded and for MIPS also added

Conflicts:
	src/driver/fb_accel_arm.cpp
This commit is contained in:
redblue-pkt
2020-06-11 13:10:40 +02:00
committed by Thilo Graf
parent ae3d31b74b
commit 42890325d7
5 changed files with 345 additions and 14 deletions

View File

@@ -239,6 +239,16 @@ if test "$enable_arm_acc" = "yes"; then
fi
AM_CONDITIONAL(ENABLE_ARM_ACC, test "$enable_arm_acc" = "yes")
AC_ARG_ENABLE(mips-acc,
AS_HELP_STRING([--enable-mips-acc], [enable mips hardware acceleration @<:@default=yes@:>@]]),
[enable_mips_acc="$enableval"],
[enable_mips_acc="yes"])
if test "$enable_mips_acc" = "yes"; then
AC_DEFINE(ENABLE_MIPS_ACC, 1, [enable mips hardware acceleration])
fi
AM_CONDITIONAL(ENABLE_MIPS_ACC, test "$enable_mips_acc" = "yes")
AC_ARG_ENABLE(extupdate,
AS_HELP_STRING([--enable-extupdate], [enable extended update routine @<:@default=no@:>@]),
AC_DEFINE(ENABLE_EXTUPDATE, 1, [enable extended update routine]))