- Abstracts all OpenGL functionality including UI objects - Cleans up several rendering codepaths - Improves threading functionality - Removes old code and problematic functions
86 lines
2.7 KiB
C++
86 lines
2.7 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 RENDERCONTEXTTHREADWRAPPER_H
|
|
#define RENDERCONTEXTTHREADWRAPPER_H
|
|
|
|
#include <QThread>
|
|
|
|
#include "renderer.h"
|
|
|
|
OLIVE_NAMESPACE_ENTER
|
|
|
|
class RendererThreadWrapper : public Renderer
|
|
{
|
|
public:
|
|
RendererThreadWrapper(Renderer* inner, QObject* parent = nullptr);
|
|
|
|
virtual ~RendererThreadWrapper() override
|
|
{
|
|
Destroy();
|
|
delete inner_;
|
|
}
|
|
|
|
virtual bool Init() override;
|
|
|
|
public slots:
|
|
virtual void PostInit() override;
|
|
|
|
virtual void Destroy() override;
|
|
|
|
virtual void ClearDestination(double r = 0.0, double g = 0.0, double b = 0.0, double a = 0.0) override;
|
|
|
|
virtual void AttachTextureAsDestination(OLIVE_NAMESPACE::Renderer::Texture* texture) override;
|
|
|
|
virtual void DetachTextureAsDestination() override;
|
|
|
|
virtual QVariant CreateNativeTexture(OLIVE_NAMESPACE::VideoParams param, void* data = nullptr, int linesize = 0) override;
|
|
|
|
virtual void DestroyNativeTexture(QVariant texture) override;
|
|
|
|
virtual QVariant CreateNativeShader(OLIVE_NAMESPACE::ShaderCode code) override;
|
|
|
|
virtual void DestroyNativeShader(QVariant shader) override;
|
|
|
|
virtual void UploadToTexture(OLIVE_NAMESPACE::Renderer::Texture* texture, void* data, int linesize) override;
|
|
|
|
virtual void DownloadFromTexture(OLIVE_NAMESPACE::Renderer::Texture* texture, void* data, int linesize) override;
|
|
|
|
virtual TexturePtr ProcessShader(const OLIVE_NAMESPACE::Node* node,
|
|
OLIVE_NAMESPACE::ShaderJob job,
|
|
OLIVE_NAMESPACE::VideoParams params) override;
|
|
|
|
virtual void SetViewport(int width, int height) override;
|
|
|
|
virtual void BlitColorManaged(OLIVE_NAMESPACE::ColorProcessorPtr color_processor, OLIVE_NAMESPACE::Renderer::Texture* source, OLIVE_NAMESPACE::Renderer::Texture *destination = nullptr) override;
|
|
|
|
virtual void Blit(OLIVE_NAMESPACE::Renderer::Texture* source, QVariant shader, OLIVE_NAMESPACE::Renderer::ShaderUniformMap parameters, OLIVE_NAMESPACE::Renderer::Texture* destination = nullptr) override;
|
|
|
|
private:
|
|
Renderer* inner_;
|
|
|
|
QThread* thread_;
|
|
|
|
};
|
|
|
|
OLIVE_NAMESPACE_EXIT
|
|
|
|
#endif // RENDERCONTEXTTHREADWRAPPER_H
|