Skip to content

Commit

Permalink
Zephyr: Scene: move node.hpp to scene_node.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
fleroviux committed May 27, 2024
1 parent 65d3085 commit 00c56c3
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/next/src/gltf_loader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <zephyr/renderer/component/mesh.hpp>
#include <zephyr/renderer/resource/geometry.hpp>
#include <zephyr/scene/node.hpp>
#include <zephyr/scene/scene_node.hpp>
#include <zephyr/integer.hpp>
#include <zephyr/panic.hpp>
#include <nlohmann/json.hpp>
Expand Down
2 changes: 1 addition & 1 deletion app/next/src/main_window.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#include <zephyr/logger/logger.hpp>
#include <zephyr/renderer/vulkan/vulkan_instance.hpp>
#include <zephyr/renderer/render_engine.hpp>
#include <zephyr/scene/node.hpp>
#include <zephyr/scene/scene_graph.hpp>
#include <zephyr/scene/scene_node.hpp>
#include <zephyr/float.hpp>
#include <zephyr/integer.hpp>
#include <zephyr/panic.hpp>
Expand Down
2 changes: 1 addition & 1 deletion zephyr/renderer/include/zephyr/renderer/render_engine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <zephyr/renderer/backend/render_backend.hpp>
#include <zephyr/renderer/engine/geometry_cache.hpp>
#include <zephyr/renderer/resource/geometry.hpp>
#include <zephyr/scene/node.hpp>
#include <zephyr/scene/scene_node.hpp>
#include <atomic>
#include <semaphore>
#include <thread>
Expand Down
2 changes: 1 addition & 1 deletion zephyr/scene/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set(HEADERS
set(HEADERS_PUBLIC
include/zephyr/scene/component.hpp
include/zephyr/scene/scene_graph.hpp
include/zephyr/scene/node.hpp
include/zephyr/scene/scene_node.hpp
include/zephyr/scene/transform.hpp
)

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion zephyr/scene/src/scene_graph.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

#include <zephyr/scene/scene_graph.hpp>
#include <zephyr/scene/node.hpp>
#include <zephyr/scene/scene_node.hpp>

namespace zephyr {

Expand Down
2 changes: 1 addition & 1 deletion zephyr/scene/src/transform.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

#include <zephyr/scene/node.hpp>
#include <zephyr/scene/scene_node.hpp>
#include <zephyr/scene/transform.hpp>

namespace zephyr {
Expand Down

0 comments on commit 00c56c3

Please sign in to comment.