mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-13 07:15:06 +00:00
filter-dynamic-mask: Initialize all members
This commit is contained in:
parent
87e6767033
commit
ff3c2e8c66
1 changed files with 3 additions and 2 deletions
|
@ -51,8 +51,9 @@ static std::pair<dynamic_mask::channel, const char*> channel_translations[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
dynamic_mask::dynamic_mask_instance::dynamic_mask_instance(obs_data_t* settings, obs_source_t* self)
|
dynamic_mask::dynamic_mask_instance::dynamic_mask_instance(obs_data_t* settings, obs_source_t* self)
|
||||||
: obs::source_instance(settings, self), _have_filter_texture(false), _have_input_texture(false),
|
: obs::source_instance(settings, self), _translation_map(), _effect(), _have_filter_texture(false), _filter_rt(),
|
||||||
_have_final_texture(false), _precalc(), _effect()
|
_filter_texture(), _have_input_texture(false), _input(), _input_capture(), _input_texture(),
|
||||||
|
_have_final_texture(false), _final_rt(), _final_texture(), _channels(), _precalc()
|
||||||
{
|
{
|
||||||
_filter_rt = std::make_shared<gs::rendertarget>(GS_RGBA, GS_ZS_NONE);
|
_filter_rt = std::make_shared<gs::rendertarget>(GS_RGBA, GS_ZS_NONE);
|
||||||
_final_rt = std::make_shared<gs::rendertarget>(GS_RGBA, GS_ZS_NONE);
|
_final_rt = std::make_shared<gs::rendertarget>(GS_RGBA, GS_ZS_NONE);
|
||||||
|
|
Loading…
Reference in a new issue