Screen rotation 90° in framebuffer mode
Unsolved
Mobile and Embedded
-
Hello, How can I rotate screen 90° in framebuffer mode?
I tried
./calculator -platform linuxfb:fb=/dev/fb0:rotation=90I see src/plugins/platforms/linuxfb/qlinuxfbscreen.cpp not supporting it.
Moreover my application completely ignores any settings into this filebool QLinuxFbScreen::initialize()
{
QRegularExpression ttyRx(QLatin1String("tty=(.)"));
QRegularExpression fbRx(QLatin1String("fb=(.)"));
QRegularExpression mmSizeRx(QLatin1String("mmsize=(\d+)x(\d+)"));
QRegularExpression sizeRx(QLatin1String("size=(\d+)x(\d+)"));
QRegularExpression offsetRx(QLatin1String("offset=(\d+)x(\d+)"));Thank you
-
Hi,
What version of Qt are you using ?