Files
oak-editor/app/render/backend/opengl/opengltexture.h
T

119 lines
2.6 KiB
C++

/***
Olive - Non-Linear Video Editor
Copyright (C) 2019 Olive Team
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 3 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/>.
***/
#ifndef OPENGLTEXTURE_H
#define OPENGLTEXTURE_H
#include <memory>
#include <QOpenGLFunctions>
#include "codec/frame.h"
#include "render/pixelformat.h"
OLIVE_NAMESPACE_ENTER
/**
* @brief A class wrapper around an OpenGL texture
*/
class OpenGLTexture : public QObject
{
Q_OBJECT
public:
OpenGLTexture();
virtual ~OpenGLTexture() override;
DISABLE_COPY_MOVE(OpenGLTexture)
void Create(QOpenGLContext* ctx, const VideoParams& params, const void *data, int linesize);
void Create(QOpenGLContext* ctx, const VideoParams& params);
void Create(QOpenGLContext* ctx, FramePtr frame);
void Create(QOpenGLContext* ctx, Frame* frame);
bool IsCreated() const;
void Bind();
void Release();
const VideoParams& params() const
{
return params_;
}
const int& width() const
{
return params_.effective_width();
}
const int& height() const
{
return params_.effective_height();
}
const PixelFormat::Format &format() const
{
return params_.format();
}
const GLuint& texture() const
{
return texture_;
}
const int& divider() const
{
return params_.divider();
}
/**
* @brief Changes the pixel aspect ratio metadata of this textuer
*
* This metadata is important for our render pipeline, but we don't need to do any re-allocation
* to set it like we do with other VideoParam changes, so we provide a function to change only
* the PAR here.
*/
void SetPixelAspectRatio(const rational& r);
void Upload(FramePtr frame);
void Upload(Frame* frame);
void Upload(const void *data, int linesize);
public slots:
void Destroy();
private:
void CreateInternal(QOpenGLContext *create_ctx, GLuint *tex, const void *data, int linesize);
QOpenGLContext* created_ctx_;
GLuint texture_;
VideoParams params_;
};
using OpenGLTexturePtr = std::shared_ptr<OpenGLTexture>;
OLIVE_NAMESPACE_EXIT
Q_DECLARE_METATYPE(OLIVE_NAMESPACE::OpenGLTexturePtr)
#endif // OPENGLTEXTURE_H