Skip to content

Commit

Permalink
[editor] increased console size
Browse files Browse the repository at this point in the history
  • Loading branch information
PanosK92 committed Jan 17, 2025
1 parent 4300c39 commit 7e8122a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion editor/Editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ void Editor::BeginWindow()
ImGuiID dock_right_id = ImGui::DockBuilderSplitNode(dock_main_id, ImGuiDir_Right, 0.17f, nullptr, &dock_main_id);
ImGuiID dock_right_down_id = ImGui::DockBuilderSplitNode(dock_right_id, ImGuiDir_Down, 0.6f, nullptr, &dock_right_id);
ImGuiID dock_down_id = ImGui::DockBuilderSplitNode(dock_main_id, ImGuiDir_Down, 0.22f, nullptr, &dock_main_id);
ImGuiID dock_down_right_id = ImGui::DockBuilderSplitNode(dock_down_id, ImGuiDir_Right, 0.5f, nullptr, &dock_down_id);
ImGuiID dock_down_right_id = ImGui::DockBuilderSplitNode(dock_down_id, ImGuiDir_Right, 0.3f, nullptr, &dock_down_id);

// dock windows
ImGui::DockBuilderDockWindow("World", dock_right_id);
Expand Down
2 changes: 1 addition & 1 deletion runtime/RHI/Vulkan/Vulkan_CommandList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ namespace spartan
used_stages |= pso.shaders[RHI_Shader_Type::Pixel] ? VK_PIPELINE_STAGE_2_FRAGMENT_SHADER_BIT : 0;
used_stages |= pso.shaders[RHI_Shader_Type::Compute] ? VK_PIPELINE_STAGE_2_COMPUTE_SHADER_BIT : 0;

// a call to ClearTexture() will enter this path with any shaders, so go wide
// a call to ClearTexture() will enter this path without shaders, so go wide
if (used_stages == 0)
{
used_stages = VK_PIPELINE_STAGE_2_ALL_COMMANDS_BIT;
Expand Down

0 comments on commit 7e8122a

Please sign in to comment.