Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
WinteryFox committed Nov 26, 2023
1 parent f17f9b8 commit 21d08f9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
11 changes: 11 additions & 0 deletions src/engine/ShaderModule.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <utility>
#include <vector>
#include <string>
#include <utility>
Expand Down Expand Up @@ -55,6 +56,16 @@ namespace Vixen {
inputs(inputs),
uniformBuffers(uniformBuffers) {}

ShaderModule(const ShaderModule&) = delete;

ShaderModule& operator=(const ShaderModule&) = delete;

ShaderModule(ShaderModule&&) = default;

ShaderModule& operator=(ShaderModule&&) = default;

virtual ~ShaderModule() = default;

[[nodiscard]] Stage getStage() const {
return stage;
}
Expand Down
7 changes: 0 additions & 7 deletions src/engine/vk/VkShaderProgram.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
#pragma once

#include <volk.h>
#include <glslang/Public/ShaderLang.h>
#include <spdlog/spdlog.h>
#include <glslang/SPIRV/SpvTools.h>
#include <glslang/SPIRV/GlslangToSpv.h>
#include <glslang/SPIRV/disassemble.h>
#include <spdlog/fmt/bin_to_hex.h>
#include "../ShaderProgram.h"
#include "VkShaderModule.h"

Expand Down

0 comments on commit 21d08f9

Please sign in to comment.