Merge branch 'Plasma/5.6'
This commit is contained in:
commit
69a2d3f4f2
3 changed files with 12 additions and 1 deletions
|
@ -115,10 +115,17 @@ QSurfaceFormat AbstractPlatformContext::format() const
|
|||
return m_format;
|
||||
}
|
||||
|
||||
#if (QT_VERSION < QT_VERSION_CHECK(5, 7, 0))
|
||||
QFunctionPointer AbstractPlatformContext::getProcAddress(const QByteArray &procName)
|
||||
{
|
||||
return eglGetProcAddress(procName.constData());
|
||||
}
|
||||
#else
|
||||
QFunctionPointer AbstractPlatformContext::getProcAddress(const char *procName)
|
||||
{
|
||||
return eglGetProcAddress(procName);
|
||||
}
|
||||
#endif
|
||||
|
||||
bool AbstractPlatformContext::isValid() const
|
||||
{
|
||||
|
|
|
@ -39,7 +39,11 @@ public:
|
|||
void doneCurrent() override;
|
||||
QSurfaceFormat format() const override;
|
||||
bool isValid() const override;
|
||||
#if (QT_VERSION < QT_VERSION_CHECK(5, 7, 0))
|
||||
QFunctionPointer getProcAddress(const QByteArray &procName) override;
|
||||
#else
|
||||
QFunctionPointer getProcAddress(const char *procName) override;
|
||||
#endif
|
||||
|
||||
protected:
|
||||
EGLDisplay eglDisplay() const {
|
||||
|
|
|
@ -77,7 +77,7 @@ Comment[nn]=Filmframsyning i fullskjermsmodus over alle tilgjengelege skjermar
|
|||
Comment[pl]=Rozciąga pełnoekranowy odtwarzacz filmów na wszystkie podłączone ekrany, tworząc ścianę wideo
|
||||
Comment[pt]=Espalha o leitor de vídeo em todos os ecrãs ligados para criar um painel de vídeo
|
||||
Comment[pt_BR]=Espalha o reprodutor de vídeo em tela inteira sobre todas as telas ligadas para criar um painel de vídeo
|
||||
Comment[ru]=Поверх всех прикреплённых экранов открывается видео проигрыватель для создания видео стены
|
||||
Comment[ru]=Для создания видеостены вывод видеопроигрывателя распределяется по всем подключённым экранам
|
||||
Comment[sk]=Roztiahne na celú obrazovku video prehrávač cez všetky pripojené obrazovky na vytvorenie video steny
|
||||
Comment[sl]=Celozaslonski predvajalnik videov bo razprostrt prek vseh priklopljenih zaslonov in tako ustvaril video zid
|
||||
Comment[sr]=Видео плејер преко целог екрана бива проширен на све прикључене екране, стварајући видео зид
|
||||
|
|
Loading…
Reference in a new issue