Files
test2/source/blender/depsgraph/intern/debug/deg_debug.cc
Sergey Sharybin a12a8a71bb Remove "All Rights Reserved" from Blender Foundation copyright code
The goal is to solve confusion of the "All rights reserved" for licensing
code under an open-source license.

The phrase "All rights reserved" comes from a historical convention that
required this phrase for the copyright protection to apply. This convention
is no longer relevant.

However, even though the phrase has no meaning in establishing the copyright
it has not lost meaning in terms of licensing.

This change makes it so code under the Blender Foundation copyright does
not use "all rights reserved". This is also how the GPL license itself
states how to apply it to the source code:

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software ...

This change does not change copyright notice in cases when the copyright
is dual (BF and an author), or just an author of the code. It also does
mot change copyright which is inherited from NaN Holding BV as it needs
some further investigation about what is the proper way to handle it.
2023-03-30 10:51:59 +02:00

85 lines
1.7 KiB
C++

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2013 Blender Foundation */
/** \file
* \ingroup depsgraph
*/
#include "intern/debug/deg_debug.h"
#include "BLI_console.h"
#include "BLI_hash.h"
#include "BLI_string.h"
#include "BLI_utildefines.h"
#include "PIL_time_utildefines.h"
#include "BKE_global.h"
namespace blender::deg {
DepsgraphDebug::DepsgraphDebug()
: flags(G.debug), is_ever_evaluated(false), graph_evaluation_start_time_(0)
{
}
bool DepsgraphDebug::do_time_debug() const
{
return ((G.debug & G_DEBUG_DEPSGRAPH_TIME) != 0);
}
void DepsgraphDebug::begin_graph_evaluation()
{
if (!do_time_debug()) {
return;
}
const double current_time = PIL_check_seconds_timer();
if (is_ever_evaluated) {
fps_samples_.add_sample(current_time - graph_evaluation_start_time_);
}
graph_evaluation_start_time_ = current_time;
}
void DepsgraphDebug::end_graph_evaluation()
{
if (!do_time_debug()) {
return;
}
const double graph_eval_end_time = PIL_check_seconds_timer();
printf("Depsgraph updated in %f seconds.\n", graph_eval_end_time - graph_evaluation_start_time_);
printf("Depsgraph evaluation FPS: %f\n", 1.0f / fps_samples_.get_averaged());
is_ever_evaluated = true;
}
bool terminal_do_color()
{
return (G.debug & G_DEBUG_DEPSGRAPH_PRETTY) != 0;
}
string color_for_pointer(const void *pointer)
{
if (!terminal_do_color()) {
return "";
}
int r, g, b;
BLI_hash_pointer_to_color(pointer, &r, &g, &b);
char buffer[64];
BLI_snprintf(buffer, sizeof(buffer), TRUECOLOR_ANSI_COLOR_FORMAT, r, g, b);
return string(buffer);
}
string color_end()
{
if (!terminal_do_color()) {
return "";
}
return string(TRUECOLOR_ANSI_COLOR_FINISH);
}
} // namespace blender::deg