2019-04-02 00:46:55 +00:00
|
|
|
// Modern effects for a modern Streamer
|
|
|
|
// Copyright (C) 2019 Michael Fabian Dirks
|
|
|
|
//
|
|
|
|
// 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, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
|
|
|
|
#include "gfx-blur-box.hpp"
|
|
|
|
#include <cmath>
|
|
|
|
#include <memory>
|
2019-09-04 01:03:41 +00:00
|
|
|
#include <stdexcept>
|
2019-04-02 22:16:13 +00:00
|
|
|
#include "obs/gs/gs-helper.hpp"
|
2019-04-02 00:46:55 +00:00
|
|
|
#include "plugin.hpp"
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4201)
|
|
|
|
#endif
|
|
|
|
#include <obs.h>
|
2020-04-05 04:13:14 +00:00
|
|
|
#include <obs-module.h>
|
2019-04-02 00:46:55 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
#define ST_MAX_BLUR_SIZE 128 // Also change this in box.effect if modified.
|
2019-04-02 00:46:55 +00:00
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
streamfx::gfx::blur::box_data::box_data()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gctx = streamfx::obs::gs::context();
|
2021-11-07 13:37:05 +00:00
|
|
|
{
|
|
|
|
auto file = streamfx::data_file_path("effects/blur/box.effect");
|
|
|
|
try {
|
|
|
|
_effect = streamfx::obs::gs::effect::create(file);
|
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
DLOG_ERROR("Error loading '%s': %s", file.generic_u8string().c_str(), ex.what());
|
|
|
|
}
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
streamfx::gfx::blur::box_data::~box_data()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gctx = streamfx::obs::gs::context();
|
2019-08-04 14:20:26 +00:00
|
|
|
_effect.reset();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
streamfx::obs::gs::effect streamfx::gfx::blur::box_data::get_effect()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
return _effect;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
streamfx::gfx::blur::box_factory::box_factory() {}
|
2019-04-02 00:46:55 +00:00
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
streamfx::gfx::blur::box_factory::~box_factory() {}
|
2019-04-02 00:46:55 +00:00
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
bool streamfx::gfx::blur::box_factory::is_type_supported(::streamfx::gfx::blur::type type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
switch (type) {
|
2021-06-08 02:47:04 +00:00
|
|
|
case ::streamfx::gfx::blur::type::Area:
|
2019-04-02 00:46:55 +00:00
|
|
|
return true;
|
2021-06-08 02:47:04 +00:00
|
|
|
case ::streamfx::gfx::blur::type::Directional:
|
2019-04-02 00:46:55 +00:00
|
|
|
return true;
|
2021-06-08 02:47:04 +00:00
|
|
|
case ::streamfx::gfx::blur::type::Rotational:
|
2019-04-02 00:46:55 +00:00
|
|
|
return true;
|
2021-06-08 02:47:04 +00:00
|
|
|
case ::streamfx::gfx::blur::type::Zoom:
|
2019-04-02 00:46:55 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
std::shared_ptr<::streamfx::gfx::blur::base> streamfx::gfx::blur::box_factory::create(::streamfx::gfx::blur::type type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
switch (type) {
|
2021-06-08 02:47:04 +00:00
|
|
|
case ::streamfx::gfx::blur::type::Area:
|
|
|
|
return std::make_shared<::streamfx::gfx::blur::box>();
|
|
|
|
case ::streamfx::gfx::blur::type::Directional:
|
|
|
|
return std::static_pointer_cast<::streamfx::gfx::blur::box>(
|
|
|
|
std::make_shared<::streamfx::gfx::blur::box_directional>());
|
|
|
|
case ::streamfx::gfx::blur::type::Rotational:
|
|
|
|
return std::make_shared<::streamfx::gfx::blur::box_rotational>();
|
|
|
|
case ::streamfx::gfx::blur::type::Zoom:
|
|
|
|
return std::make_shared<::streamfx::gfx::blur::box_zoom>();
|
2019-04-02 00:46:55 +00:00
|
|
|
default:
|
|
|
|
throw std::runtime_error("Invalid type.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_min_size(::streamfx::gfx::blur::type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
return double_t(1.0);
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_step_size(::streamfx::gfx::blur::type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
return double_t(1.0);
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_max_size(::streamfx::gfx::blur::type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:47:04 +00:00
|
|
|
return double_t(ST_MAX_BLUR_SIZE);
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_min_angle(::streamfx::gfx::blur::type v)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
switch (v) {
|
2021-06-08 02:47:04 +00:00
|
|
|
case ::streamfx::gfx::blur::type::Directional:
|
|
|
|
case ::streamfx::gfx::blur::type::Rotational:
|
2019-04-02 00:46:55 +00:00
|
|
|
return -180.0;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_step_angle(::streamfx::gfx::blur::type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
return double_t(0.01);
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_max_angle(::streamfx::gfx::blur::type v)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
switch (v) {
|
2021-06-08 02:47:04 +00:00
|
|
|
case ::streamfx::gfx::blur::type::Directional:
|
|
|
|
case ::streamfx::gfx::blur::type::Rotational:
|
2019-04-02 00:46:55 +00:00
|
|
|
return 180.0;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
bool streamfx::gfx::blur::box_factory::is_step_scale_supported(::streamfx::gfx::blur::type v)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
switch (v) {
|
2021-06-08 02:47:04 +00:00
|
|
|
case ::streamfx::gfx::blur::type::Area:
|
|
|
|
case ::streamfx::gfx::blur::type::Zoom:
|
|
|
|
case ::streamfx::gfx::blur::type::Directional:
|
2019-04-02 00:46:55 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_min_step_scale_x(::streamfx::gfx::blur::type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
return double_t(0.01);
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_step_step_scale_x(::streamfx::gfx::blur::type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
return double_t(0.01);
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_max_step_scale_x(::streamfx::gfx::blur::type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
return double_t(1000.0);
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_min_step_scale_y(::streamfx::gfx::blur::type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
return double_t(0.01);
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_step_step_scale_y(::streamfx::gfx::blur::type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
return double_t(0.01);
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_factory::get_max_step_scale_y(::streamfx::gfx::blur::type)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
|
|
|
return double_t(1000.0);
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
std::shared_ptr<::streamfx::gfx::blur::box_data> streamfx::gfx::blur::box_factory::data()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:47:04 +00:00
|
|
|
std::unique_lock<std::mutex> ulock(_data_lock);
|
|
|
|
std::shared_ptr<::streamfx::gfx::blur::box_data> data = _data.lock();
|
2019-04-02 00:46:55 +00:00
|
|
|
if (!data) {
|
2021-06-08 02:47:04 +00:00
|
|
|
data = std::make_shared<::streamfx::gfx::blur::box_data>();
|
2019-08-04 14:20:26 +00:00
|
|
|
_data = data;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
::streamfx::gfx::blur::box_factory& streamfx::gfx::blur::box_factory::get()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:47:04 +00:00
|
|
|
static ::streamfx::gfx::blur::box_factory instance;
|
2019-04-02 00:46:55 +00:00
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
streamfx::gfx::blur::box::box()
|
|
|
|
: _data(::streamfx::gfx::blur::box_factory::get().data()), _size(1.), _step_scale({1., 1.})
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gctx = streamfx::obs::gs::context();
|
|
|
|
_rendertarget = std::make_shared<::streamfx::obs::gs::rendertarget>(GS_RGBA, GS_ZS_NONE);
|
|
|
|
_rendertarget2 = std::make_shared<::streamfx::obs::gs::rendertarget>(GS_RGBA, GS_ZS_NONE);
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
streamfx::gfx::blur::box::~box() {}
|
2019-04-02 00:46:55 +00:00
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
void streamfx::gfx::blur::box::set_input(std::shared_ptr<::streamfx::obs::gs::texture> texture)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
_input_texture = texture;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
::streamfx::gfx::blur::type streamfx::gfx::blur::box::get_type()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:47:04 +00:00
|
|
|
return ::streamfx::gfx::blur::type::Area;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box::get_size()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
return _size;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
void streamfx::gfx::blur::box::set_size(double_t width)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
_size = width;
|
|
|
|
if (_size < 1.0) {
|
|
|
|
_size = 1.0;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
2021-06-08 02:47:04 +00:00
|
|
|
if (_size > ST_MAX_BLUR_SIZE) {
|
|
|
|
_size = ST_MAX_BLUR_SIZE;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
void streamfx::gfx::blur::box::set_step_scale(double_t x, double_t y)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
_step_scale = {x, y};
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
void streamfx::gfx::blur::box::get_step_scale(double_t& x, double_t& y)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
x = _step_scale.first;
|
|
|
|
y = _step_scale.second;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box::get_step_scale_x()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
return _step_scale.first;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box::get_step_scale_y()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
return _step_scale.second;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
std::shared_ptr<::streamfx::obs::gs::texture> streamfx::gfx::blur::box::render()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gctx = streamfx::obs::gs::context();
|
2020-04-25 23:04:04 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gdmp = streamfx::obs::gs::debug_marker(streamfx::obs::gs::debug_color_azure_radiance, "Box Blur");
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
2020-04-25 09:36:19 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
float_t width = float_t(_input_texture->get_width());
|
|
|
|
float_t height = float_t(_input_texture->get_height());
|
2019-04-02 00:46:55 +00:00
|
|
|
|
|
|
|
gs_set_cull_mode(GS_NEITHER);
|
|
|
|
gs_enable_color(true, true, true, true);
|
|
|
|
gs_enable_depth_test(false);
|
|
|
|
gs_depth_function(GS_ALWAYS);
|
|
|
|
gs_blend_state_push();
|
|
|
|
gs_reset_blend_state();
|
|
|
|
gs_enable_blending(false);
|
|
|
|
gs_blend_function(GS_BLEND_ONE, GS_BLEND_ZERO);
|
|
|
|
gs_enable_stencil_test(false);
|
|
|
|
gs_enable_stencil_write(false);
|
|
|
|
gs_stencil_function(GS_STENCIL_BOTH, GS_ALWAYS);
|
|
|
|
gs_stencil_op(GS_STENCIL_BOTH, GS_ZERO, GS_ZERO, GS_ZERO);
|
|
|
|
|
|
|
|
// Two Pass Blur
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::effect effect = _data->get_effect();
|
2019-04-02 00:46:55 +00:00
|
|
|
if (effect) {
|
|
|
|
// Pass 1
|
2019-12-15 10:39:57 +00:00
|
|
|
effect.get_parameter("pImage").set_texture(_input_texture);
|
|
|
|
effect.get_parameter("pImageTexel").set_float2(float_t(1.f / width), 0.f);
|
|
|
|
effect.get_parameter("pStepScale").set_float2(float_t(_step_scale.first), float_t(_step_scale.second));
|
|
|
|
effect.get_parameter("pSize").set_float(float_t(_size));
|
|
|
|
effect.get_parameter("pSizeInverseMul").set_float(float_t(1.0f / (float_t(_size) * 2.0f + 1.0f)));
|
2019-04-02 00:46:55 +00:00
|
|
|
|
|
|
|
{
|
2020-04-25 23:04:04 +00:00
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gdm = streamfx::obs::gs::debug_marker(streamfx::obs::gs::debug_color_azure_radiance, "Horizontal");
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
auto op = _rendertarget2->render(uint32_t(width), uint32_t(height));
|
2019-04-02 00:46:55 +00:00
|
|
|
gs_ortho(0, 1., 0, 1., 0, 1.);
|
2019-12-15 10:39:57 +00:00
|
|
|
while (gs_effect_loop(effect.get_object(), "Draw")) {
|
2020-05-02 16:36:57 +00:00
|
|
|
streamfx::gs_draw_fullscreen_tri();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pass 2
|
2019-12-15 10:39:57 +00:00
|
|
|
effect.get_parameter("pImage").set_texture(_rendertarget2->get_texture());
|
|
|
|
effect.get_parameter("pImageTexel").set_float2(0.f, float_t(1.f / height));
|
2019-04-02 00:46:55 +00:00
|
|
|
|
|
|
|
{
|
2020-04-25 23:04:04 +00:00
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gdm = streamfx::obs::gs::debug_marker(streamfx::obs::gs::debug_color_azure_radiance, "Vertical");
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
auto op = _rendertarget->render(uint32_t(width), uint32_t(height));
|
2019-04-02 00:46:55 +00:00
|
|
|
gs_ortho(0, 1., 0, 1., 0, 1.);
|
2019-12-15 10:39:57 +00:00
|
|
|
while (gs_effect_loop(effect.get_object(), "Draw")) {
|
2020-05-02 16:36:57 +00:00
|
|
|
streamfx::gs_draw_fullscreen_tri();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gs_blend_state_pop();
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
return _rendertarget->get_texture();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
std::shared_ptr<::streamfx::obs::gs::texture> streamfx::gfx::blur::box::get()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
return _rendertarget->get_texture();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
streamfx::gfx::blur::box_directional::box_directional() : _angle(0) {}
|
2019-04-02 00:46:55 +00:00
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
::streamfx::gfx::blur::type streamfx::gfx::blur::box_directional::get_type()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:47:04 +00:00
|
|
|
return ::streamfx::gfx::blur::type::Directional;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_directional::get_angle()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
return D_RAD_TO_DEG(_angle);
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
void streamfx::gfx::blur::box_directional::set_angle(double_t angle)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
_angle = D_DEG_TO_RAD(angle);
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
std::shared_ptr<::streamfx::obs::gs::texture> streamfx::gfx::blur::box_directional::render()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gctx = streamfx::obs::gs::context();
|
2020-04-25 23:04:04 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gdmp = streamfx::obs::gs::debug_marker(streamfx::obs::gs::debug_color_azure_radiance, "Box Directional Blur");
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
2020-04-25 09:36:19 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
float_t width = float_t(_input_texture->get_width());
|
|
|
|
float_t height = float_t(_input_texture->get_height());
|
2019-04-02 00:46:55 +00:00
|
|
|
|
|
|
|
gs_blend_state_push();
|
|
|
|
gs_reset_blend_state();
|
|
|
|
gs_enable_color(true, true, true, true);
|
|
|
|
gs_enable_blending(false);
|
|
|
|
gs_enable_depth_test(false);
|
|
|
|
gs_enable_stencil_test(false);
|
|
|
|
gs_enable_stencil_write(false);
|
|
|
|
gs_set_cull_mode(GS_NEITHER);
|
|
|
|
gs_depth_function(GS_ALWAYS);
|
|
|
|
gs_blend_function(GS_BLEND_ONE, GS_BLEND_ZERO);
|
|
|
|
gs_stencil_function(GS_STENCIL_BOTH, GS_ALWAYS);
|
|
|
|
gs_stencil_op(GS_STENCIL_BOTH, GS_ZERO, GS_ZERO, GS_ZERO);
|
|
|
|
|
|
|
|
// One Pass Blur
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::effect effect = _data->get_effect();
|
2019-04-02 00:46:55 +00:00
|
|
|
if (effect) {
|
2019-12-15 10:39:57 +00:00
|
|
|
effect.get_parameter("pImage").set_texture(_input_texture);
|
|
|
|
effect.get_parameter("pImageTexel")
|
|
|
|
.set_float2(float_t(1. / width * cos(_angle)), float_t(1.f / height * sin(_angle)));
|
|
|
|
effect.get_parameter("pStepScale").set_float2(float_t(_step_scale.first), float_t(_step_scale.second));
|
|
|
|
effect.get_parameter("pSize").set_float(float_t(_size));
|
|
|
|
effect.get_parameter("pSizeInverseMul").set_float(float_t(1.0f / (float_t(_size) * 2.0f + 1.0f)));
|
2019-04-02 00:46:55 +00:00
|
|
|
|
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
auto op = _rendertarget->render(uint32_t(width), uint32_t(height));
|
2019-04-02 00:46:55 +00:00
|
|
|
gs_ortho(0, 1., 0, 1., 0, 1.);
|
2019-12-15 10:39:57 +00:00
|
|
|
while (gs_effect_loop(effect.get_object(), "Draw")) {
|
2020-05-02 16:36:57 +00:00
|
|
|
streamfx::gs_draw_fullscreen_tri();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gs_blend_state_pop();
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
return _rendertarget->get_texture();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
::streamfx::gfx::blur::type streamfx::gfx::blur::box_rotational::get_type()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:47:04 +00:00
|
|
|
return ::streamfx::gfx::blur::type::Rotational;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
void streamfx::gfx::blur::box_rotational::set_center(double_t x, double_t y)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
_center.first = x;
|
|
|
|
_center.second = y;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
void streamfx::gfx::blur::box_rotational::get_center(double_t& x, double_t& y)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
x = _center.first;
|
|
|
|
y = _center.second;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
double_t streamfx::gfx::blur::box_rotational::get_angle()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
return D_RAD_TO_DEG(_angle);
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
void streamfx::gfx::blur::box_rotational::set_angle(double_t angle)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
_angle = D_DEG_TO_RAD(angle);
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
std::shared_ptr<::streamfx::obs::gs::texture> streamfx::gfx::blur::box_rotational::render()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gctx = streamfx::obs::gs::context();
|
2020-04-25 23:04:04 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gdmp = streamfx::obs::gs::debug_marker(streamfx::obs::gs::debug_color_azure_radiance, "Box Rotational Blur");
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
2020-04-25 09:36:19 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
float_t width = float_t(_input_texture->get_width());
|
|
|
|
float_t height = float_t(_input_texture->get_height());
|
2019-04-02 00:46:55 +00:00
|
|
|
|
|
|
|
gs_blend_state_push();
|
|
|
|
gs_reset_blend_state();
|
|
|
|
gs_enable_color(true, true, true, true);
|
|
|
|
gs_enable_blending(false);
|
|
|
|
gs_enable_depth_test(false);
|
|
|
|
gs_enable_stencil_test(false);
|
|
|
|
gs_enable_stencil_write(false);
|
|
|
|
gs_set_cull_mode(GS_NEITHER);
|
|
|
|
gs_depth_function(GS_ALWAYS);
|
|
|
|
gs_blend_function(GS_BLEND_ONE, GS_BLEND_ZERO);
|
|
|
|
gs_stencil_function(GS_STENCIL_BOTH, GS_ALWAYS);
|
|
|
|
gs_stencil_op(GS_STENCIL_BOTH, GS_ZERO, GS_ZERO, GS_ZERO);
|
|
|
|
|
|
|
|
// One Pass Blur
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::effect effect = _data->get_effect();
|
2019-04-02 00:46:55 +00:00
|
|
|
if (effect) {
|
2019-12-15 10:39:57 +00:00
|
|
|
effect.get_parameter("pImage").set_texture(_input_texture);
|
|
|
|
effect.get_parameter("pImageTexel").set_float2(float_t(1.f / width), float_t(1.f / height));
|
|
|
|
effect.get_parameter("pStepScale").set_float2(float_t(_step_scale.first), float_t(_step_scale.second));
|
|
|
|
effect.get_parameter("pSize").set_float(float_t(_size));
|
|
|
|
effect.get_parameter("pSizeInverseMul").set_float(float_t(1.0f / (float_t(_size) * 2.0f + 1.0f)));
|
|
|
|
effect.get_parameter("pAngle").set_float(float_t(_angle / _size));
|
|
|
|
effect.get_parameter("pCenter").set_float2(float_t(_center.first), float_t(_center.second));
|
2019-04-02 00:46:55 +00:00
|
|
|
|
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
auto op = _rendertarget->render(uint32_t(width), uint32_t(height));
|
2019-04-02 00:46:55 +00:00
|
|
|
gs_ortho(0, 1., 0, 1., 0, 1.);
|
2019-12-15 10:39:57 +00:00
|
|
|
while (gs_effect_loop(effect.get_object(), "Rotate")) {
|
2020-05-02 16:36:57 +00:00
|
|
|
streamfx::gs_draw_fullscreen_tri();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gs_blend_state_pop();
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
return _rendertarget->get_texture();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
::streamfx::gfx::blur::type streamfx::gfx::blur::box_zoom::get_type()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:47:04 +00:00
|
|
|
return ::streamfx::gfx::blur::type::Zoom;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
void streamfx::gfx::blur::box_zoom::set_center(double_t x, double_t y)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
_center.first = x;
|
|
|
|
_center.second = y;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
void streamfx::gfx::blur::box_zoom::get_center(double_t& x, double_t& y)
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
x = _center.first;
|
|
|
|
y = _center.second;
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-08 02:47:04 +00:00
|
|
|
std::shared_ptr<::streamfx::obs::gs::texture> streamfx::gfx::blur::box_zoom::render()
|
2019-04-02 00:46:55 +00:00
|
|
|
{
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gctx = streamfx::obs::gs::context();
|
2020-04-25 23:04:04 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_PROFILING
|
2021-06-08 02:38:24 +00:00
|
|
|
auto gdmp = streamfx::obs::gs::debug_marker(streamfx::obs::gs::debug_color_azure_radiance, "Box Zoom Blur");
|
2020-04-25 23:04:04 +00:00
|
|
|
#endif
|
2020-04-25 09:36:19 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
float_t width = float_t(_input_texture->get_width());
|
|
|
|
float_t height = float_t(_input_texture->get_height());
|
2019-04-02 00:46:55 +00:00
|
|
|
|
|
|
|
gs_blend_state_push();
|
|
|
|
gs_reset_blend_state();
|
|
|
|
gs_enable_color(true, true, true, true);
|
|
|
|
gs_enable_blending(false);
|
|
|
|
gs_enable_depth_test(false);
|
|
|
|
gs_enable_stencil_test(false);
|
|
|
|
gs_enable_stencil_write(false);
|
|
|
|
gs_set_cull_mode(GS_NEITHER);
|
|
|
|
gs_depth_function(GS_ALWAYS);
|
|
|
|
gs_blend_function(GS_BLEND_ONE, GS_BLEND_ZERO);
|
|
|
|
gs_stencil_function(GS_STENCIL_BOTH, GS_ALWAYS);
|
|
|
|
gs_stencil_op(GS_STENCIL_BOTH, GS_ZERO, GS_ZERO, GS_ZERO);
|
|
|
|
|
|
|
|
// One Pass Blur
|
2021-06-08 02:38:24 +00:00
|
|
|
streamfx::obs::gs::effect effect = _data->get_effect();
|
2019-04-02 00:46:55 +00:00
|
|
|
if (effect) {
|
2019-12-15 10:39:57 +00:00
|
|
|
effect.get_parameter("pImage").set_texture(_input_texture);
|
|
|
|
effect.get_parameter("pImageTexel").set_float2(float_t(1.f / width), float_t(1.f / height));
|
|
|
|
effect.get_parameter("pStepScale").set_float2(float_t(_step_scale.first), float_t(_step_scale.second));
|
|
|
|
effect.get_parameter("pSize").set_float(float_t(_size));
|
|
|
|
effect.get_parameter("pSizeInverseMul").set_float(float_t(1.0f / (float_t(_size) * 2.0f + 1.0f)));
|
|
|
|
effect.get_parameter("pCenter").set_float2(float_t(_center.first), float_t(_center.second));
|
2019-04-02 00:46:55 +00:00
|
|
|
|
|
|
|
{
|
2019-08-04 14:20:26 +00:00
|
|
|
auto op = _rendertarget->render(uint32_t(width), uint32_t(height));
|
2019-04-02 00:46:55 +00:00
|
|
|
gs_ortho(0, 1., 0, 1., 0, 1.);
|
2019-12-15 10:39:57 +00:00
|
|
|
while (gs_effect_loop(effect.get_object(), "Zoom")) {
|
2020-05-02 16:36:57 +00:00
|
|
|
streamfx::gs_draw_fullscreen_tri();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gs_blend_state_pop();
|
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
return _rendertarget->get_texture();
|
2019-04-02 00:46:55 +00:00
|
|
|
}
|