2017-09-17 20:35:48 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2017 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2019-01-14 10:23:21 +00:00
|
|
|
#include "gs-effect.hpp"
|
|
|
|
#include "gs-rendertarget.hpp"
|
|
|
|
#include "gs-texture.hpp"
|
|
|
|
#include "gs-vertexbuffer.hpp"
|
2017-09-17 20:35:48 +00:00
|
|
|
|
2019-01-14 10:23:21 +00:00
|
|
|
// OBS
|
2019-01-14 22:21:29 +00:00
|
|
|
#ifdef _MSC_VER
|
2018-09-27 04:09:43 +00:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4201)
|
2019-01-14 22:21:29 +00:00
|
|
|
#endif
|
2018-09-27 04:09:43 +00:00
|
|
|
#include <graphics/graphics.h>
|
2019-01-14 22:21:29 +00:00
|
|
|
#ifdef _MSC_VER
|
2018-09-27 04:09:43 +00:00
|
|
|
#pragma warning(pop)
|
2019-01-14 22:21:29 +00:00
|
|
|
#endif
|
2017-09-17 20:35:48 +00:00
|
|
|
|
2018-09-27 04:09:43 +00:00
|
|
|
namespace gs {
|
|
|
|
class mipmapper {
|
2019-08-04 14:20:26 +00:00
|
|
|
std::unique_ptr<gs::vertex_buffer> _vb;
|
|
|
|
std::unique_ptr<gs::rendertarget> _rt;
|
2019-12-15 10:39:57 +00:00
|
|
|
gs::effect _effect;
|
2018-09-27 04:09:43 +00:00
|
|
|
|
2017-09-17 20:35:48 +00:00
|
|
|
public:
|
2018-09-27 04:09:43 +00:00
|
|
|
enum class generator : uint8_t {
|
|
|
|
Point,
|
|
|
|
Linear,
|
|
|
|
Sharpen,
|
|
|
|
Smoothen,
|
|
|
|
Bicubic,
|
|
|
|
Lanczos,
|
|
|
|
};
|
2017-09-17 20:35:48 +00:00
|
|
|
|
2018-09-27 04:09:43 +00:00
|
|
|
public:
|
|
|
|
~mipmapper();
|
|
|
|
mipmapper();
|
2017-09-17 20:35:48 +00:00
|
|
|
|
2018-09-28 21:32:35 +00:00
|
|
|
void rebuild(std::shared_ptr<gs::texture> source, std::shared_ptr<gs::texture> target,
|
|
|
|
gs::mipmapper::generator generator, float_t strength);
|
2017-09-17 20:35:48 +00:00
|
|
|
};
|
2018-09-27 04:09:43 +00:00
|
|
|
} // namespace gs
|