2015-08-14 14:52:40 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2015 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#include "sharingplatformcontext.h"
|
|
|
|
#include "integration.h"
|
|
|
|
#include "window.h"
|
2016-04-07 07:24:17 +00:00
|
|
|
#include "../../platform.h"
|
2015-08-14 14:52:40 +00:00
|
|
|
#include "../../wayland_server.h"
|
|
|
|
#include "../../shell_client.h"
|
2016-07-18 14:34:03 +00:00
|
|
|
#include <logging.h>
|
2015-08-14 14:52:40 +00:00
|
|
|
|
|
|
|
#include <QOpenGLFramebufferObject>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace QPA
|
|
|
|
{
|
|
|
|
|
|
|
|
SharingPlatformContext::SharingPlatformContext(QOpenGLContext *context, Integration *integration)
|
2016-04-07 06:28:35 +00:00
|
|
|
: AbstractPlatformContext(context, integration, kwinApp()->platform()->sceneEglDisplay())
|
2015-08-14 14:52:40 +00:00
|
|
|
{
|
|
|
|
create();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SharingPlatformContext::makeCurrent(QPlatformSurface *surface)
|
|
|
|
{
|
|
|
|
Window *window = static_cast<Window*>(surface);
|
|
|
|
if (eglMakeCurrent(eglDisplay(), EGL_NO_SURFACE, EGL_NO_SURFACE, context())) {
|
|
|
|
window->bindContentFBO();
|
|
|
|
return true;
|
|
|
|
}
|
2016-07-18 14:34:03 +00:00
|
|
|
qCWarning(KWIN_QPA) << "Failed to make context current";
|
|
|
|
|
2015-08-14 14:52:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SharingPlatformContext::isSharing() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SharingPlatformContext::swapBuffers(QPlatformSurface *surface)
|
|
|
|
{
|
|
|
|
Window *window = static_cast<Window*>(surface);
|
|
|
|
auto c = window->shellClient();
|
|
|
|
if (!c) {
|
2016-07-18 14:34:03 +00:00
|
|
|
qCDebug(KWIN_QPA) << "SwapBuffers called but there is no ShellClient";
|
2015-08-14 14:52:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
makeCurrent(surface);
|
|
|
|
glFlush();
|
|
|
|
c->setInternalFramebufferObject(window->swapFBO());
|
|
|
|
window->bindContentFBO();
|
|
|
|
}
|
|
|
|
|
|
|
|
GLuint SharingPlatformContext::defaultFramebufferObject(QPlatformSurface *surface) const
|
|
|
|
{
|
|
|
|
if (Window *window = dynamic_cast<Window*>(surface)) {
|
|
|
|
const auto &fbo = window->contentFBO();
|
|
|
|
if (!fbo.isNull()) {
|
|
|
|
return fbo->handle();
|
|
|
|
}
|
|
|
|
}
|
2016-07-18 14:34:03 +00:00
|
|
|
qCDebug(KWIN_QPA) << "No default framebuffer object for internal window";
|
2015-08-14 14:52:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SharingPlatformContext::create()
|
|
|
|
{
|
|
|
|
if (config() == 0) {
|
2016-07-18 14:34:03 +00:00
|
|
|
qCWarning(KWIN_QPA) << "Did not get an EGL config";
|
2015-08-14 14:52:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!bindApi()) {
|
2016-07-18 14:34:03 +00:00
|
|
|
qCWarning(KWIN_QPA) << "Could not bind API.";
|
2015-08-14 14:52:40 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-04-07 06:28:35 +00:00
|
|
|
createContext(kwinApp()->platform()->sceneEglContext());
|
2015-08-14 14:52:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|