diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-10-27 02:03:12 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-10-27 02:03:12 +0000 |
| commit | 4f213ac114151964ca559dc92e54446ffc31a0b5 (patch) | |
| tree | 2fab4756eb4f41ed77b41b843f99634467cd4e08 /Common/NativeApp/src/Linux/LinuxMain.cpp | |
| parent | Updated Android instructions in readme and troubleshooting (diff) | |
| parent | Updated gitignore for NativeApp/Android (diff) | |
| download | DiligentEngine-4f213ac114151964ca559dc92e54446ffc31a0b5.tar.gz DiligentEngine-4f213ac114151964ca559dc92e54446ffc31a0b5.zip | |
Merge remote-tracking branch 'refs/remotes/origin/master'
Diffstat (limited to 'Common/NativeApp/src/Linux/LinuxMain.cpp')
| -rw-r--r-- | Common/NativeApp/src/Linux/LinuxMain.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Common/NativeApp/src/Linux/LinuxMain.cpp b/Common/NativeApp/src/Linux/LinuxMain.cpp index 801ab49..93a3235 100644 --- a/Common/NativeApp/src/Linux/LinuxMain.cpp +++ b/Common/NativeApp/src/Linux/LinuxMain.cpp @@ -213,7 +213,6 @@ int xcb_main() std::unique_ptr<NativeAppBase> TheApp(CreateApplication());
std::string Title = TheApp->GetAppTitle();
- Title += " (Vulkan)";
auto xcbInfo = InitXCBConnectionAndWindow(Title);
TheApp->InitVulkan(xcbInfo.connection, xcbInfo.window);
@@ -221,6 +220,7 @@ int xcb_main() Timer timer;
auto PrevTime = timer.GetElapsedTime();
+ Title = TheApp->GetAppTitle();
WindowTitleHelper TitleHelper(Title);
while (true)
@@ -417,7 +417,6 @@ int x_main() glXMakeCurrent(display, win, ctx);
TheApp->OnGLContextCreated(display, win);
std::string Title = TheApp->GetAppTitle();
- Title += " (OpenGL)";
Timer timer;
auto PrevTime = timer.GetElapsedTime();
|
