When launching an embedded Qt application by specifying the directfb back-end, there is a way to pass arguments to it by using a specific syntax
./my-qt-app -qws -display directfb:960x720
This will change the resolution.
Let's say I'd like to remove the chrome from the application window. Since directfb has lots of options, how could I specify them via command-line? Should a look for the internal Qt implementation or use CLI arguments as specified by the DirectFB project?
UPDATE although there is a mechanism using colons to pass arguments to the display back-end, in the directfb case it won't work for resolution changes.