Skip to content

Commit

Permalink
path: Fix includes after rebase.
Browse files Browse the repository at this point in the history
  • Loading branch information
heinezen committed May 24, 2024
1 parent cfebd22 commit 12cd944
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libopenage/pathfinding/demo/demo_0.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
#include "renderer/camera/camera.h"
#include "renderer/gui/integration/public/gui_application_with_logger.h"
#include "renderer/opengl/window.h"
#include "renderer/render_pass.h"
#include "renderer/renderable.h"
#include "renderer/renderer.h"
#include "renderer/resources/mesh_data.h"
#include "renderer/resources/shader_source.h"
Expand Down Expand Up @@ -298,7 +300,7 @@ void RenderManager0::show_vectors(const std::shared_ptr<path::FlowField> &field)
true,
true,
};
this->vector_pass->add_renderables(arrow_renderable);
this->vector_pass->add_renderables(std::move(arrow_renderable));
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions libopenage/pathfinding/demo/demo_1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

#include "renderer/gui/integration/public/gui_application_with_logger.h"
#include "renderer/opengl/window.h"
#include "renderer/render_pass.h"
#include "renderer/renderable.h"
#include "renderer/resources/shader_source.h"
#include "renderer/resources/texture_info.h"
#include "renderer/shader_program.h"
Expand Down

0 comments on commit 12cd944

Please sign in to comment.