Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
amasson committed May 20, 2024
1 parent 42a8fda commit b38b0ec
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Engine/Render/src/Render/Vulkan/RendererObjectManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

#include "RendererObjectManager.hpp"

#include "Render/Vulkan/VulkanRenderer.hpp"
#include "Device.hpp"
#include "Render/Vulkan/VulkanRenderer.hpp"
#include "Scene/Node/MeshNode.hpp"
#include "Scene/RenderElement/Texture.hpp"
#include "Scene/RenderElement/Shader.hpp"
#include "Scene/RenderElement/Texture.hpp"
#include "VulkanRenderableNode/MeshNode.hpp"
#include "VulkanRenderableNode/Texture.hpp"
#include "VulkanRenderableNode/Shader.hpp"
#include "VulkanRenderableNode/Texture.hpp"

namespace Stone::Render::Vulkan {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "../RenderContext.hpp"
#include "../RenderPass.hpp"
#include "../SwapChain.hpp"
#include "Render/Vulkan/VulkanRenderer.hpp"
#include "Scene/Node/MeshNode.hpp"
#include "Scene/RenderContext.hpp"
#include "Scene/RenderElement/Material.hpp"
Expand All @@ -14,7 +15,6 @@
#include "Texture.hpp"
#include "Utils/FileSystem.hpp"
#include "VertexBinding.hpp"
#include "Render/Vulkan/VulkanRenderer.hpp"

#include <cstring>
#include <stdexcept>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
namespace Stone::Render::Vulkan {

Shader::Shader(const std::shared_ptr<Scene::Shader> &shader, const std::shared_ptr<VulkanRenderer> &renderer) {
(void)shader;
(void)renderer;
(void)shader;
(void)renderer;
}

Shader::~Shader() {
}

void Shader::render(Scene::RenderContext &context) {
(void)context;
(void)context;
}

} // namespace Stone::Render::Vulkan
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class VulkanRenderer;
class Shader : public Scene::IRendererObject {
public:
Shader(const std::shared_ptr<Scene::Shader> &shader, const std::shared_ptr<VulkanRenderer> &renderer);
~Shader() override;
~Shader() override;

void render(Scene::RenderContext &context) override;
void render(Scene::RenderContext &context) override;
};

} // namespace Stone::Render::Vulkan
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#include "../SwapChain.hpp"
#include "Core/Image/ImageData.hpp"
#include "Core/Image/ImageSource.hpp"
#include "Render/Vulkan/VulkanRenderer.hpp"
#include "RenderableUtils.hpp"
#include "Scene/RenderElement/Texture.hpp"
#include "Render/Vulkan/VulkanRenderer.hpp"

#include <cstring>

Expand Down
1 change: 0 additions & 1 deletion Engine/Render/src/Render/Vulkan/VulkanRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,4 @@ const std::shared_ptr<SwapChain> &VulkanRenderer::getSwapChain() const {
}



} // namespace Stone::Render::Vulkan

0 comments on commit b38b0ec

Please sign in to comment.