From: Alexander Kanavin Date: Wed, 15 Dec 2021 22:40:34 +0000 (+0100) Subject: runqemu: additional setting to force software rendering with sdl 2.0.18 X-Git-Tag: uninative-3.5~447 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=282e28bec1419d4e34076234027f34af3a49e7b5;p=openembedded-core.git runqemu: additional setting to force software rendering with sdl 2.0.18 Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- diff --git a/scripts/runqemu b/scripts/runqemu index 410d2a9939..d49f128fe4 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -474,6 +474,7 @@ class BaseConfig(object): if 'gl' not in sys.argv[1:] and 'gl-es' not in sys.argv[1:]: os.environ['SDL_RENDER_DRIVER'] = 'software' + os.environ['SDL_FRAMEBUFFER_ACCELERATION'] = 'false' unknown_arg = "" for arg in sys.argv[1:]: