obs-StreamFX/source/gfx/blur/gfx-blur-base.hpp
Michael Fabian 'Xaymar' Dirks 5a3954ae0e project: Fix License, License headers and Copyright information
Fixes several files incorrectly stated a different license from the actual project, as well as the copyright headers included in all files. This change has no effect on the licensing terms, it should clear up a bit of confusion by contributors. Plus the files get a bit smaller, and we have less duplicated information across the entire project.

Overall the project is GPLv2 if not built with Qt, and GPLv3 if it is built with Qt. There are no parts licensed under a different license, all have been adapted from other compatible licenses into GPLv2 or GPLv3.
2023-04-05 18:59:08 +02:00

109 lines
2.8 KiB
C++

// AUTOGENERATED COPYRIGHT HEADER START
// Copyright (C) 2019-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
// AUTOGENERATED COPYRIGHT HEADER END
#pragma once
#include "common.hpp"
#include "obs/gs/gs-texture.hpp"
namespace streamfx::gfx {
namespace blur {
enum class type : int64_t {
Invalid = -1,
Area,
Directional,
Rotational,
Zoom,
};
class base {
public:
virtual ~base() {}
virtual void set_input(std::shared_ptr<::streamfx::obs::gs::texture> texture) = 0;
virtual ::streamfx::gfx::blur::type get_type() = 0;
virtual double_t get_size() = 0;
virtual void set_size(double_t width) = 0;
virtual void set_step_scale(double_t x, double_t y) = 0;
virtual void set_step_scale_x(double_t v);
virtual void set_step_scale_y(double_t v);
virtual void get_step_scale(double_t& x, double_t& y) = 0;
virtual double_t get_step_scale_x();
virtual double_t get_step_scale_y();
virtual std::shared_ptr<::streamfx::obs::gs::texture> render() = 0;
virtual std::shared_ptr<::streamfx::obs::gs::texture> get() = 0;
};
class base_angle {
public:
virtual ~base_angle() {}
virtual double_t get_angle() = 0;
virtual void set_angle(double_t angle) = 0;
};
class base_center {
public:
virtual ~base_center() {}
virtual void set_center(double_t x, double_t y) = 0;
virtual void set_center_x(double_t v);
virtual void set_center_y(double_t v);
virtual void get_center(double_t& x, double_t& y) = 0;
virtual double_t get_center_x();
virtual double_t get_center_y();
};
class ifactory {
public:
virtual ~ifactory() {}
virtual bool is_type_supported(::streamfx::gfx::blur::type type) = 0;
virtual std::shared_ptr<::streamfx::gfx::blur::base> create(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_min_size(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_step_size(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_max_size(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_min_angle(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_step_angle(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_max_angle(::streamfx::gfx::blur::type type) = 0;
virtual bool is_step_scale_supported(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_min_step_scale_x(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_step_step_scale_x(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_max_step_scale_x(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_min_step_scale_y(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_step_step_scale_y(::streamfx::gfx::blur::type type) = 0;
virtual double_t get_max_step_scale_y(::streamfx::gfx::blur::type type) = 0;
};
} // namespace blur
} // namespace streamfx::gfx