gs-helper: Remove unused constructor

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2019-10-18 23:04:23 +02:00
parent 90cdc30ef1
commit 10681d30c8
2 changed files with 3 additions and 3 deletions

View File

@ -29,10 +29,10 @@ gs::context::~context()
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::debug_marker(const float color[4], std::string format, ...)
{

View File

@ -42,7 +42,7 @@ namespace gs {
std::string _name;
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();
};