You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is, that drawing to the framebuffer is done with the wrong viewport sizes. You can fix it by adding a viewport.update() before drawing to the framebuffer:
privatevoidupdateStatePicture() {
...
if (time > GALLERY_PICTURE_TIME) {
viewport.update(VIRTUAL_WIDTH, VIRTUAL_HEIGHT);
When the transition is going the framebuffer render the image with black bars. Any idea how to solve it?
This is the picture. The screen has been resized.
This is when transitioning
The text was updated successfully, but these errors were encountered: