gs-helper: Only include debug markers if profiling is enabled

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2020-04-28 09:06:30 +02:00
parent 49f1cbc15e
commit 775e27caff
2 changed files with 20 additions and 16 deletions

View File

@ -29,7 +29,8 @@ gs::context::~context()
obs_leave_graphics(); obs_leave_graphics();
} }
gs::debug_marker::debug_marker(const float_t color[4], const char* format, ...) #ifdef ENABLE_PROFILING
gs::debug_marker::debug_marker(const float color[4], const char* format, ...)
{ {
std::size_t size; std::size_t size;
std::vector<char> buffer(128); std::vector<char> buffer(128);
@ -47,3 +48,4 @@ gs::debug_marker::~debug_marker()
{ {
gs_debug_marker_end(); gs_debug_marker_end();
} }
#endif

View File

@ -29,21 +29,22 @@ namespace gs {
~context(); ~context();
}; };
static const float_t debug_color_white[4] = {1.f, 1.f, 1.f, 1.f}; #ifdef ENABLE_PROFILING
static const float_t debug_color_gray[4] = {.5f, .5f, .5f, 1.f}; static constexpr float_t debug_color_white[4] = {1.f, 1.f, 1.f, 1.f};
static const float_t debug_color_black[4] = {0.f, 0.f, 0.f, 1.f}; static constexpr float_t debug_color_gray[4] = {.5f, .5f, .5f, 1.f};
static const float_t debug_color_red[4] = {1.f, 0.f, 0.f, 1.f}; static constexpr float_t debug_color_black[4] = {0.f, 0.f, 0.f, 1.f};
static const float_t debug_color_flush_orange[4] = {1.f, .5f, 0.f, 1.f}; static constexpr float_t debug_color_red[4] = {1.f, 0.f, 0.f, 1.f};
static const float_t debug_color_yellow[4] = {1.f, 1.f, 0.f, 1.f}; static constexpr float_t debug_color_flush_orange[4] = {1.f, .5f, 0.f, 1.f};
static const float_t debug_color_chartreuse[4] = {.5f, 1.f, 0.f, 1.f}; static constexpr float_t debug_color_yellow[4] = {1.f, 1.f, 0.f, 1.f};
static const float_t debug_color_green[4] = {0.f, 1.f, 0.f, 1.f}; static constexpr float_t debug_color_chartreuse[4] = {.5f, 1.f, 0.f, 1.f};
static const float_t debug_color_spring_green[4] = {0.f, 1.f, .5f, 1.f}; static constexpr float_t debug_color_green[4] = {0.f, 1.f, 0.f, 1.f};
static const float_t debug_color_teal[4] = {0.f, 1.f, 1.f, 1.f}; static constexpr float_t debug_color_spring_green[4] = {0.f, 1.f, .5f, 1.f};
static const float_t debug_color_azure_radiance[4] = {0.f, .5f, 1.f, 1.f}; static constexpr float_t debug_color_teal[4] = {0.f, 1.f, 1.f, 1.f};
static const float_t debug_color_blue[4] = {0.f, 0.f, 1.f, 1.f}; static constexpr float_t debug_color_azure_radiance[4] = {0.f, .5f, 1.f, 1.f};
static const float_t debug_color_electric_violet[4] = {.5f, 0.f, 1.f, 1.f}; static constexpr float_t debug_color_blue[4] = {0.f, 0.f, 1.f, 1.f};
static const float_t debug_color_magenta[4] = {1.f, 0.f, 1.f, 1.f}; static constexpr float_t debug_color_electric_violet[4] = {.5f, 0.f, 1.f, 1.f};
static const float_t debug_color_rose[4] = {1.f, 0.f, .5f, 1.f}; static constexpr float_t debug_color_magenta[4] = {1.f, 0.f, 1.f, 1.f};
static constexpr float_t debug_color_rose[4] = {1.f, 0.f, .5f, 1.f};
static const float_t* debug_color_source = debug_color_white; static const float_t* debug_color_source = debug_color_white;
static const float_t* debug_color_capture = debug_color_flush_orange; static const float_t* debug_color_capture = debug_color_flush_orange;
@ -62,4 +63,5 @@ namespace gs {
debug_marker(const float_t color[4], const char* format, ...); debug_marker(const float_t color[4], const char* format, ...);
~debug_marker(); ~debug_marker();
}; };
#endif
} // namespace gs } // namespace gs