Fix sizing issues and others
This commit is contained in:
parent
0b73f8037b
commit
a36386cc20
12 changed files with 325 additions and 142 deletions
|
|
@ -41,6 +41,8 @@ DebugGUI::DebugGUI(Window* window) {
|
|||
// appearance
|
||||
io.ConfigFlags |= ImGuiConfigFlags_DockingEnable;
|
||||
|
||||
return;
|
||||
|
||||
auto& colors = ImGui::GetStyle().Colors;
|
||||
colors[ImGuiCol_WindowBg] = ImVec4{ 0.1f, 0.105f, 0.11f, 1.0f };
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
using namespace tp;
|
||||
|
||||
Application::Application() {
|
||||
mWindow = Window::createWindow();
|
||||
mWindow = Window::createWindow({1500, 900});
|
||||
mGraphics = new Graphics(mWindow);
|
||||
|
||||
mDrawTimer.setDuration(1000.f / mDrawPerSecond);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue