Hello all
I'm using gems on a raspberry pi 3b+ and when a switch to full screen,
the frame rate drops significantly. Is there a way to go into full screen mode
keeping a low screen resolution (320 x 240) so the quality of the
video playback will be bad but the frame rate will stay stable?
this question may have been asked before but i tried to look
for it with no hints
thanks for the help
cheers
r.y
On 2018-09-17 16:23, ray Y wrote:
Is there a way to go into full screen mode keeping a low screen resolution (320 x 240) so the quality of the
Gem tries to use the current dimensions when going to fullscreen mode. so [dimen 320 240, fullscreen 1, create( should give you a 320x240 display with a fullscreen Gem-window. that is: if your display supports this resolution.
you can also drop the [fullscreen( message alltogether, and just create a borderless-window at position 0/0 with the desired dimensions: [border 0, offset 0 0, dimen 320 240, create( if the window has the same dimensions as the display, this will effectively be a full-screen window.
fgadm IOhannes