This implements the proposal from #124512. For that it contains the following changes: * Remove the global override of `new`/`delete` when `WITH_CXX_GUARDEDALLOC` was enabled. * Always use `MEM_CXX_CLASS_ALLOC_FUNCS` where it is currently used. This used to be guarded by `WITH_CXX_GUARDEDALLOC` in some but not all cases. This means that a few classes which didn't use our guarded allocator by default before, are now using it. Pull Request: https://projects.blender.org/blender/blender/pulls/130181
56 lines
794 B
C++
56 lines
794 B
C++
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup freestyle
|
|
* \brief Class defining a singleton used as timestamp
|
|
*/
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
#include "BLI_sys_types.h"
|
|
|
|
namespace Freestyle {
|
|
|
|
class TimeStamp {
|
|
public:
|
|
static inline TimeStamp *instance()
|
|
{
|
|
return &_instance;
|
|
}
|
|
|
|
inline uint getTimeStamp() const
|
|
{
|
|
return _time_stamp;
|
|
}
|
|
|
|
inline void increment()
|
|
{
|
|
++_time_stamp;
|
|
}
|
|
|
|
inline void reset()
|
|
{
|
|
_time_stamp = 1;
|
|
}
|
|
|
|
protected:
|
|
TimeStamp()
|
|
{
|
|
_time_stamp = 1;
|
|
}
|
|
|
|
TimeStamp(const TimeStamp &) {}
|
|
|
|
private:
|
|
static TimeStamp _instance;
|
|
uint _time_stamp;
|
|
|
|
MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:TimeStamp")
|
|
};
|
|
|
|
} /* namespace Freestyle */
|