You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
723 B
33 lines
723 B
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2020 Aleix Pol Gonzalez <aleixpol@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#include "kwineglimagetexture.h" |
|
|
|
using namespace KWin; |
|
|
|
#include <QDebug> |
|
#include <epoxy/egl.h> |
|
|
|
EGLImageTexture::EGLImageTexture(EGLDisplay display, EGLImage image, int internalFormat, const QSize &size) |
|
: GLTexture(internalFormat, size, 1, true) |
|
, m_image(image) |
|
, m_display(display) |
|
{ |
|
if (m_image == EGL_NO_IMAGE_KHR) { |
|
return; |
|
} |
|
|
|
bind(); |
|
glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, m_image); |
|
} |
|
|
|
EGLImageTexture::~EGLImageTexture() |
|
{ |
|
eglDestroyImageKHR(m_display, m_image); |
|
}
|
|
|