mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
gs-helper: Remove unused constructor
This commit is contained in:
parent
90cdc30ef1
commit
10681d30c8
2 changed files with 3 additions and 3 deletions
|
@ -29,10 +29,10 @@ gs::context::~context()
|
||||||
obs_leave_graphics();
|
obs_leave_graphics();
|
||||||
}
|
}
|
||||||
|
|
||||||
gs::debug_marker::debug_marker(const float color[4], std::string name) : _name(name)
|
/*gs::debug_marker::debug_marker(const float color[4], std::string name) : _name(name)
|
||||||
{
|
{
|
||||||
gs_debug_marker_begin(color, _name.c_str());
|
gs_debug_marker_begin(color, _name.c_str());
|
||||||
}
|
}*/
|
||||||
|
|
||||||
gs::debug_marker::debug_marker(const float color[4], std::string format, ...)
|
gs::debug_marker::debug_marker(const float color[4], std::string format, ...)
|
||||||
{
|
{
|
||||||
|
|
|
@ -42,7 +42,7 @@ namespace gs {
|
||||||
std::string _name;
|
std::string _name;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
debug_marker(const float color[4], std::string name);
|
//debug_marker(const float color[4], std::string name);
|
||||||
debug_marker(const float color[4], std::string format, ...);
|
debug_marker(const float color[4], std::string format, ...);
|
||||||
~debug_marker();
|
~debug_marker();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue