2019-12-15 08:05:23 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-04-02 15:02:01 +00:00
|
|
|
#include "common.hpp"
|
2019-12-18 05:35:31 +00:00
|
|
|
#include "gs-effect-parameter.hpp"
|
2019-12-15 08:05:23 +00:00
|
|
|
|
|
|
|
namespace gs {
|
2019-12-15 10:39:57 +00:00
|
|
|
class effect_pass : public std::shared_ptr<gs_epass_t> {
|
2019-12-15 08:05:23 +00:00
|
|
|
std::shared_ptr<gs_technique_t>* _parent;
|
|
|
|
|
|
|
|
public:
|
|
|
|
effect_pass(gs_epass_t* pass, std::shared_ptr<gs_technique_t>* parent = nullptr);
|
|
|
|
~effect_pass();
|
|
|
|
|
|
|
|
std::string name();
|
|
|
|
|
|
|
|
//gs::shader get_pixel_shader();
|
|
|
|
//gs::shader get_vertex_shader();
|
|
|
|
|
2020-04-08 21:38:42 +00:00
|
|
|
std::size_t count_vertex_parameters();
|
|
|
|
gs::effect_parameter get_vertex_parameter(std::size_t idx);
|
2019-12-18 05:35:31 +00:00
|
|
|
gs::effect_parameter get_vertex_parameter(std::string name);
|
2019-12-21 16:04:38 +00:00
|
|
|
bool has_vertex_parameter(std::string name);
|
|
|
|
bool has_vertex_parameter(std::string name, gs::effect_parameter::type type);
|
2019-12-15 08:05:23 +00:00
|
|
|
|
2020-04-08 21:38:42 +00:00
|
|
|
std::size_t count_pixel_parameters();
|
|
|
|
gs::effect_parameter get_pixel_parameter(std::size_t idx);
|
2019-12-18 05:35:31 +00:00
|
|
|
gs::effect_parameter get_pixel_parameter(std::string name);
|
2019-12-21 16:04:38 +00:00
|
|
|
bool has_pixel_parameter(std::string name);
|
|
|
|
bool has_pixel_parameter(std::string name, gs::effect_parameter::type type);
|
2019-12-15 08:05:23 +00:00
|
|
|
};
|
|
|
|
} // namespace gs
|