From c46576a68c9e12b84938991a94d2bf2b323b09bb Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 6 Jun 2019 22:22:23 +0200 Subject: [PATCH] Flip UV. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index b15f1de0..43e1490a 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -1653,7 +1653,7 @@ bool View::DrawZoneFrames( const FrameData& frames ) { UpdateTexture( m_frameTexture, fi->ptr, fi->w, fi->h ); } - ImGui::Image( m_frameTexture, ImVec2( fi->w, fi->h ) ); + ImGui::Image( m_frameTexture, ImVec2( fi->w, fi->h ), ImVec2( 0, 1 ), ImVec2( 1, 0 ) ); } ImGui::EndTooltip();