diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2019-07-27 15:06:26 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-27 15:06:26 -0700 |
| commit | a9e04e0a72e59ee0cb9e0daf017561b2fb4b93dc (patch) | |
| tree | 94d31652c6e7c9b9e8dde227f6a639ba5beddc9f /Source/Core/VideoBackends/Null/Render.cpp | |
| parent | f04a01eb4ff3a3de58f4abe6c2d40644ad0ae2d4 (diff) | |
| parent | 6db305a4e8e2e646992e32d0d1733ec3ce83d559 (diff) | |
Merge pull request #8267 from lioncash/null
VideoBackends/Null: Minor cleanup
Diffstat (limited to 'Source/Core/VideoBackends/Null/Render.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Null/Render.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Source/Core/VideoBackends/Null/Render.cpp b/Source/Core/VideoBackends/Null/Render.cpp index 312844afe0..7e8719baf5 100644 --- a/Source/Core/VideoBackends/Null/Render.cpp +++ b/Source/Core/VideoBackends/Null/Render.cpp @@ -2,10 +2,9 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. -#include "Common/Logging/Log.h" +#include "VideoBackends/Null/Render.h" #include "VideoBackends/Null/NullTexture.h" -#include "VideoBackends/Null/Render.h" #include "VideoCommon/AbstractPipeline.h" #include "VideoCommon/AbstractShader.h" @@ -45,7 +44,6 @@ class NullShader final : public AbstractShader { public: explicit NullShader(ShaderStage stage) : AbstractShader(stage) {} - ~NullShader() = default; }; std::unique_ptr<AbstractShader> @@ -62,9 +60,6 @@ std::unique_ptr<AbstractShader> Renderer::CreateShaderFromBinary(ShaderStage sta class NullPipeline final : public AbstractPipeline { -public: - NullPipeline() = default; - ~NullPipeline() override = default; }; std::unique_ptr<AbstractPipeline> Renderer::CreatePipeline(const AbstractPipelineConfig& config, |
