obs-StreamFX/source/obs/gs/gs-effect-technique.hpp

26 lines
840 B
C++

// AUTOGENERATED COPYRIGHT HEADER START
// Copyright (C) 2017-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
// Copyright (C) 2022 lainon <GermanAizek@yandex.ru>
// AUTOGENERATED COPYRIGHT HEADER END
#pragma once
#include "common.hpp"
#include "gs-effect-pass.hpp"
namespace streamfx::obs::gs {
class effect_technique : public std::shared_ptr<gs_technique_t> {
std::shared_ptr<gs_effect_t> _parent;
public:
effect_technique(gs_technique_t* technique, std::shared_ptr<gs_effect_t> parent = nullptr);
~effect_technique();
std::string name();
std::size_t count_passes();
streamfx::obs::gs::effect_pass get_pass(std::size_t idx);
streamfx::obs::gs::effect_pass get_pass(std::string_view name);
bool has_pass(std::string_view name);
};
} // namespace streamfx::obs::gs