From f8231bb1097184ffea4ad47fc207fc64b8ccbda9 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 10 Apr 2020 17:48:59 +0200 Subject: [PATCH] Change main repository to github. --- LICENSE | 2 +- manual/techdoc.tex | 2 +- manual/tracy.tex | 10 +++++----- profiler/src/main.cpp | 2 +- 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 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" ) )