From aa07820eb73e631254371f0aa411f6b9b267b1e7 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 28 Jul 2022 00:31:10 +0200 Subject: [PATCH] Rely solely on GLFW DPI handling. --- profiler/src/main.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index 6dde4156..e9662eb0 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -220,16 +220,6 @@ int main( int argc, char** argv ) backend.SetIcon( iconPx, iconX, iconY ); bptr = &backend; -#if 0 -#ifdef _WIN32 - typedef UINT(*GDFS)(void); - GDFS getDpiForSystem = nullptr; - HMODULE dll = GetModuleHandleW(L"user32.dll"); - if( dll != INVALID_HANDLE_VALUE ) getDpiForSystem = (GDFS)GetProcAddress(dll, "GetDpiForSystem"); - if( getDpiForSystem ) dpiScale = getDpiForSystem() / 96.f; -#endif -#endif - dpiScale = backend.GetDpiScale(); const auto envDpiScale = getenv( "TRACY_DPI_SCALE" ); if( envDpiScale )