2023-02-28 01:15:26 +00:00
|
|
|
// AUTOGENERATED COPYRIGHT HEADER START
|
|
|
|
// Copyright (C) 2019-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
|
|
|
|
// Copyright (C) 2022 lainon <GermanAizek@yandex.ru>
|
|
|
|
// AUTOGENERATED COPYRIGHT HEADER END
|
2019-12-15 08:05:23 +00:00
|
|
|
|
|
|
|
#pragma once
|
2020-04-02 15:02:01 +00:00
|
|
|
#include "common.hpp"
|
2019-12-15 08:05:23 +00:00
|
|
|
#include "gs-effect-pass.hpp"
|
|
|
|
|
2021-06-08 02:38:24 +00:00
|
|
|
namespace streamfx::obs::gs {
|
2019-12-15 10:39:57 +00:00
|
|
|
class effect_technique : public std::shared_ptr<gs_technique_t> {
|
2020-07-29 02:31:55 +00:00
|
|
|
std::shared_ptr<gs_effect_t> _parent;
|
2019-12-15 08:05:23 +00:00
|
|
|
|
|
|
|
public:
|
2020-07-29 02:31:55 +00:00
|
|
|
effect_technique(gs_technique_t* technique, std::shared_ptr<gs_effect_t> parent = nullptr);
|
2019-12-15 08:05:23 +00:00
|
|
|
~effect_technique();
|
|
|
|
|
|
|
|
std::string name();
|
|
|
|
|
2021-06-08 02:38:24 +00:00
|
|
|
std::size_t count_passes();
|
|
|
|
streamfx::obs::gs::effect_pass get_pass(std::size_t idx);
|
2022-07-21 11:09:10 +00:00
|
|
|
streamfx::obs::gs::effect_pass get_pass(std::string_view name);
|
|
|
|
bool has_pass(std::string_view name);
|
2019-12-15 08:05:23 +00:00
|
|
|
};
|
2021-06-08 02:38:24 +00:00
|
|
|
} // namespace streamfx::obs::gs
|