mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-21 05:38:12 +00:00
fix(src/components/camera/Camera): fbo is now y-mirrored [Switch submodule branch]
This commit is contained in:
parent
7e48e81c70
commit
1f51692f4c
1 changed files with 3 additions and 0 deletions
|
|
@ -77,6 +77,9 @@ Camera::Camera (QQuickItem *parent) : QQuickFramebufferObject(parent) {
|
|||
setAcceptHoverEvents(true);
|
||||
setAcceptedMouseButtons(Qt::LeftButton | Qt::RightButton);
|
||||
|
||||
// The fbo content must be y-mirrored because the ms rendering is y-inverted.
|
||||
setMirrorVertically(true);
|
||||
|
||||
m_context_info = new ContextInfo();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue