2017-06-28 21:21:42 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2017 Michael Fabian Dirks
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2019-01-14 10:23:21 +00:00
|
|
|
#include "gs-helper.hpp"
|
2017-09-17 22:15:57 +00:00
|
|
|
|
2019-04-02 22:16:13 +00:00
|
|
|
gs::context::context()
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-04-02 22:16:13 +00:00
|
|
|
obs_enter_graphics();
|
2017-09-17 22:15:57 +00:00
|
|
|
}
|
|
|
|
|
2019-04-02 22:16:13 +00:00
|
|
|
gs::context::~context()
|
2018-11-07 14:24:25 +00:00
|
|
|
{
|
2019-04-02 22:16:13 +00:00
|
|
|
obs_leave_graphics();
|
2017-09-17 22:15:57 +00:00
|
|
|
}
|
2019-10-18 20:59:30 +00:00
|
|
|
|
2019-10-18 21:04:23 +00:00
|
|
|
/*gs::debug_marker::debug_marker(const float color[4], std::string name) : _name(name)
|
2019-10-18 20:59:30 +00:00
|
|
|
{
|
|
|
|
gs_debug_marker_begin(color, _name.c_str());
|
2019-10-18 21:04:23 +00:00
|
|
|
}*/
|
2019-10-18 20:59:30 +00:00
|
|
|
|
|
|
|
gs::debug_marker::debug_marker(const float color[4], std::string format, ...)
|
|
|
|
{
|
|
|
|
size_t size;
|
|
|
|
std::vector<char> buffer(64);
|
|
|
|
|
|
|
|
va_list vargs;
|
|
|
|
va_start(vargs, format);
|
|
|
|
size = vsnprintf(buffer.data(), buffer.size(), format.c_str(), vargs);
|
|
|
|
va_end(vargs);
|
|
|
|
|
|
|
|
_name = std::string(buffer.data(), buffer.data() + size);
|
|
|
|
gs_debug_marker_begin(color, _name.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
gs::debug_marker::~debug_marker()
|
|
|
|
{
|
|
|
|
gs_debug_marker_end();
|
|
|
|
}
|