// AUTOGENERATED COPYRIGHT HEADER START // Copyright (C) 2017-2023 Michael Fabian 'Xaymar' Dirks // Copyright (C) 2022 lainon // 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 { std::shared_ptr _parent; public: effect_technique(gs_technique_t* technique, std::shared_ptr 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