mirror of
https://github.com/FirestormViewer/phoenix-firestorm.git
synced 2026-08-14 08:53:53 +00:00
# Conflicts: # autobuild.xml # indra/cmake/CURL.cmake # indra/cmake/Copy3rdPartyLibs.cmake # indra/cmake/FreeType.cmake # indra/cmake/LLPrimitive.cmake # indra/cmake/NGHTTP2.cmake # indra/cmake/Tracy.cmake # indra/llappearance/llavatarappearancedefines.cpp # indra/llcommon/llprofiler.cpp # indra/llcommon/llprofiler.h # indra/llfilesystem/lldiskcache.cpp # indra/llfilesystem/lldiskcache.h # indra/llinventory/llinventorytype.cpp # indra/media_plugins/example/CMakeLists.txt # indra/newview/CMakeLists.txt # indra/newview/installers/windows/installer_template.nsi # indra/newview/llappearancemgr.cpp # indra/newview/llappviewer.cpp # indra/newview/llgroupmgr.cpp # indra/newview/llimprocessing.cpp # indra/newview/llviewermenu.cpp # indra/newview/llviewertexturelist.cpp # indra/newview/llvoavatar.cpp # indra/newview/llvoavatarself.cpp # indra/newview/skins/default/xui/en/menu_viewer.xml # indra/newview/viewer_manifest.py
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
/**
|
|
* @file llprofiler.cpp
|
|
* @brief Implementation of llprofiler
|
|
* @author Rye Cogtail
|
|
*
|
|
* $LicenseInfo:firstyear=2024&license=viewerlgpl$
|
|
* Second Life Viewer Source Code
|
|
* Copyright (C) 2024, Linden Research, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation;
|
|
* version 2.1 of the License only.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
* Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
|
|
* $/LicenseInfo$
|
|
*/
|
|
|
|
#include "linden_common.h"
|
|
|
|
#include "TracyClient.cpp"
|
|
#include "llprofiler.h"
|
|
namespace LLProfiler
|
|
{
|
|
bool active{false};
|
|
}
|
|
|