Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2020-04-10 18:48:59 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2020-04-10 18:48:59 +0300
commitf8231bb1097184ffea4ad47fc207fc64b8ccbda9 (patch)
tree87e8b5ecf24c43d04d23d2e305e553734c2217f4
parent895e06d77883eea474f311b113a402c0dbed2bcb (diff)
Change main repository to github.
-rw-r--r--LICENSE2
-rw-r--r--manual/techdoc.tex2
-rw-r--r--manual/tracy.tex10
-rw-r--r--profiler/src/main.cpp2
4 files changed, 8 insertions, 8 deletions
diff --git a/LICENSE b/LICENSE
index 3599dd37..a3ec0b93 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Tracy Profiler (https://bitbucket.org/wolfpld/tracy) is licensed under the
+Tracy Profiler (https://github.com/wolfpld/tracy) is licensed under the
3-clause BSD license.
Copyright (c) 2017-2020, Bartosz Taudul <wolf.pld@gmail.com>
diff --git a/manual/techdoc.tex b/manual/techdoc.tex
index a897818c..edb1f138 100644
--- a/manual/techdoc.tex
+++ b/manual/techdoc.tex
@@ -88,7 +88,7 @@
\vspace{10pt}
\today
\vfill
-\url{https://bitbucket.org/wolfpld/tracy}
+\url{https://github.com/wolfpld/tracy}
\end{titlepage}
\begin{abstract}
diff --git a/manual/tracy.tex b/manual/tracy.tex
index 8577e188..6d264eff 100644
--- a/manual/tracy.tex
+++ b/manual/tracy.tex
@@ -90,7 +90,7 @@
\vspace{10pt}
\today
\vfill
-\url{https://bitbucket.org/wolfpld/tracy}
+\url{https://github.com/wolfpld/tracy}
\end{titlepage}
\tableofcontents
@@ -245,7 +245,7 @@ With all that being said, Tracy may not be the right choice for you, if you need
\subsection{Performance impact}
\label{perfimpact}
-To check how much slowdown is introduced by using Tracy, let's profile an example application. For this purpose we have used etcpak\footnote{\url{https://bitbucket.org/wolfpld/etcpak}}. The input data was a $16384 \times 16384$ pixels test image and the $4 \times 4$ pixel block compression function was selected to be instrumented. The image was compressed on 12 parallel threads, and the timing data represents a mean compression time of a single image.
+To check how much slowdown is introduced by using Tracy, let's profile an example application. For this purpose we have used etcpak\footnote{\url{https://github.com/wolfpld/etcpak}}. The input data was a $16384 \times 16384$ pixels test image and the $4 \times 4$ pixel block compression function was selected to be instrumented. The image was compressed on 12 parallel threads, and the timing data represents a mean compression time of a single image.
The results are presented in table~\ref{PerformanceImpact}. Dividing the average of run time differences (37.7 \si{\milli\second}) by a number of captured zones per single image (\num{16777216}) shows us that the impact of profiling is only 2.25 \si{\nano\second} per zone (this includes two events: start and end of a zone).
@@ -301,13 +301,13 @@ To see how Tracy can be integrated into an application, you may look at example
Tracy can be found at the following web addresses:
\begin{itemize}
-\item Homepage -- \url{https://bitbucket.org/wolfpld/tracy}
-\item Bug tracker -- \url{https://bitbucket.org/wolfpld/tracy/issues?status=new&status=open}
+\item Homepage -- \url{https://github.com/wolfpld/tracy}
+\item Bug tracker -- \url{https://github.com/wolfpld/tracy/issues}
\item Discord chat -- \url{https://discord.gg/pk78auc}
\item Sponsoring development -- \url{https://github.com/sponsors/wolfpld/}
\end{itemize}
-If you don't have a Bitbucket account, you may be interested in a GitHub mirror: \url{https://github.com/wolfpld/tracy}.
+You may be also interested in a Bitbucket mirror: \url{https://bitbucket.org/wolfpld/tracy}.
\section{First steps}
diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp
index ae85d041..02004bae 100644
--- a/profiler/src/main.cpp
+++ b/profiler/src/main.cpp
@@ -477,7 +477,7 @@ static void DrawContents()
{
if( ImGui::Selectable( ICON_FA_HOME " Tracy Profiler home page" ) )
{
- OpenWebpage( "https://bitbucket.org/wolfpld/tracy" );
+ OpenWebpage( "https://github.com/wolfpld/tracy" );
}
ImGui::Separator();
if( ImGui::Selectable( ICON_FA_VIDEO " Overview of v0.2" ) )