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(); 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, ...)
{ {

View file

@ -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();
}; };