mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
Setup window title setter callback.
This commit is contained in:
parent
2b3490e6f7
commit
7f6454d550
@ -1,3 +1,4 @@
|
|||||||
|
#include <assert.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <imgui.h>
|
#include <imgui.h>
|
||||||
#include "imgui_impl_glfw_gl3.h"
|
#include "imgui_impl_glfw_gl3.h"
|
||||||
@ -39,6 +40,15 @@ static void OpenWebpage( const char* url )
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static GLFWwindow* s_glfwWindow = nullptr;
|
||||||
|
static bool s_customTitle = false;
|
||||||
|
static void SetWindowTitleCallback( const char* title )
|
||||||
|
{
|
||||||
|
assert( s_glfwWindow );
|
||||||
|
glfwSetWindowTitle( s_glfwWindow, title );
|
||||||
|
s_customTitle = true;
|
||||||
|
}
|
||||||
|
|
||||||
int main( int argc, char** argv )
|
int main( int argc, char** argv )
|
||||||
{
|
{
|
||||||
std::unique_ptr<tracy::View> view;
|
std::unique_ptr<tracy::View> view;
|
||||||
@ -67,6 +77,7 @@ int main( int argc, char** argv )
|
|||||||
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
|
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
|
||||||
#endif
|
#endif
|
||||||
GLFWwindow* window = glfwCreateWindow(1650, 960, title, NULL, NULL);
|
GLFWwindow* window = glfwCreateWindow(1650, 960, title, NULL, NULL);
|
||||||
|
s_glfwWindow = window;
|
||||||
glfwMakeContextCurrent(window);
|
glfwMakeContextCurrent(window);
|
||||||
glfwSwapInterval(1); // Enable vsync
|
glfwSwapInterval(1); // Enable vsync
|
||||||
gl3wInit();
|
gl3wInit();
|
||||||
@ -128,6 +139,12 @@ int main( int argc, char** argv )
|
|||||||
|
|
||||||
if( !view )
|
if( !view )
|
||||||
{
|
{
|
||||||
|
if( s_customTitle )
|
||||||
|
{
|
||||||
|
s_customTitle = false;
|
||||||
|
glfwSetWindowTitle( window, title );
|
||||||
|
}
|
||||||
|
|
||||||
ImGui::Begin( "Tracy server", nullptr, ImGuiWindowFlags_AlwaysAutoResize );
|
ImGui::Begin( "Tracy server", nullptr, ImGuiWindowFlags_AlwaysAutoResize );
|
||||||
ImGui::Text( "Tracy %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch );
|
ImGui::Text( "Tracy %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch );
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
@ -150,7 +167,7 @@ int main( int argc, char** argv )
|
|||||||
ImGui::InputText( "Address", addr, 1024 );
|
ImGui::InputText( "Address", addr, 1024 );
|
||||||
if( ImGui::Button( "Connect" ) && *addr && !loadThread.joinable() )
|
if( ImGui::Button( "Connect" ) && *addr && !loadThread.joinable() )
|
||||||
{
|
{
|
||||||
view = std::make_unique<tracy::View>( addr, fixedWidth );
|
view = std::make_unique<tracy::View>( addr, fixedWidth, SetWindowTitleCallback );
|
||||||
}
|
}
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
if( ImGui::Button( "Open saved trace" ) && !loadThread.joinable() )
|
if( ImGui::Button( "Open saved trace" ) && !loadThread.joinable() )
|
||||||
@ -167,7 +184,7 @@ int main( int argc, char** argv )
|
|||||||
loadThread = std::thread( [&view, f, &badVer, fixedWidth] {
|
loadThread = std::thread( [&view, f, &badVer, fixedWidth] {
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
view = std::make_unique<tracy::View>( *f, fixedWidth );
|
view = std::make_unique<tracy::View>( *f, fixedWidth, SetWindowTitleCallback );
|
||||||
}
|
}
|
||||||
catch( const tracy::UnsupportedVersion& e )
|
catch( const tracy::UnsupportedVersion& e )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user