obs/gs-helper: Optimize performance with inline

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2020-05-09 23:37:52 +02:00
parent 0eddfd75ae
commit 1951fb62ee
2 changed files with 27 additions and 37 deletions

View File

@ -18,34 +18,3 @@
*/ */
#include "gs-helper.hpp" #include "gs-helper.hpp"
gs::context::context()
{
obs_enter_graphics();
}
gs::context::~context()
{
obs_leave_graphics();
}
#ifdef ENABLE_PROFILING
gs::debug_marker::debug_marker(const float color[4], const char* format, ...)
{
std::size_t size;
std::vector<char> buffer(64);
va_list vargs;
va_start(vargs, format);
size = static_cast<size_t>(vsnprintf(buffer.data(), buffer.size(), format, 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();
}
#endif

View File

@ -1,6 +1,6 @@
/* /*
* Modern effects for a modern Streamer * Modern effects for a modern Streamer
* Copyright (C) 2017 Michael Fabian Dirks * Copyright (C) 2020 Michael Fabian Dirks
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
@ -25,8 +25,14 @@
namespace gs { namespace gs {
class context { class context {
public: public:
context(); inline context()
~context(); {
obs_enter_graphics();
}
~context()
{
obs_leave_graphics();
}
}; };
#ifdef ENABLE_PROFILING #ifdef ENABLE_PROFILING
@ -59,9 +65,24 @@ namespace gs {
std::string _name; std::string _name;
public: public:
//debug_marker(const float color[4], std::string name); inline debug_marker(const float_t color[4], const char* format, ...)
debug_marker(const float_t color[4], const char* format, ...); {
~debug_marker(); std::size_t size;
std::vector<char> buffer(64);
va_list vargs;
va_start(vargs, format);
size = static_cast<size_t>(vsnprintf(buffer.data(), buffer.size(), format, vargs));
va_end(vargs);
_name = std::string(buffer.data(), buffer.data() + size);
gs_debug_marker_begin(color, _name.c_str());
}
inline ~debug_marker()
{
gs_debug_marker_end();
}
}; };
#endif #endif
} // namespace gs } // namespace gs