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@nereid.pl>2022-11-06 03:33:15 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-11-06 03:33:15 +0300
commit9645998a97eb2b16e9080f6076dd39fbaf3acb4d (patch)
treee4111105293cb339d26204b6c10ec031a4d5f252
parent1ccc0c39ea31b77f7e1ee42074a049cd968ec3ac (diff)
Set app id.
-rw-r--r--profiler/src/BackendWayland.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/profiler/src/BackendWayland.cpp b/profiler/src/BackendWayland.cpp
index 9946951b..08849629 100644
--- a/profiler/src/BackendWayland.cpp
+++ b/profiler/src/BackendWayland.cpp
@@ -164,6 +164,7 @@ Backend::Backend( const char* title, std::function<void()> redraw, RunQueue* mai
s_toplevel = xdg_surface_get_toplevel( s_xdgSurf );
xdg_toplevel_add_listener( s_toplevel, &toplevelListener, nullptr );
xdg_toplevel_set_title( s_toplevel, title );
+ xdg_toplevel_set_app_id( s_toplevel, "tracy" );
ImGuiIO& io = ImGui::GetIO();
io.BackendPlatformName = "wayland (tracy profiler)";