Skip to content
Snippets Groups Projects
Verified Commit 1ad04260 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

Make constructors for upscaling explicit

parent 2cb5004e
Branches
Tags
No related merge requests found
...@@ -7,7 +7,7 @@ namespace vkcv::upscaling { ...@@ -7,7 +7,7 @@ namespace vkcv::upscaling {
class BilinearUpscaling : public Upscaling { class BilinearUpscaling : public Upscaling {
private: private:
public: public:
BilinearUpscaling(Core& core); explicit BilinearUpscaling(Core& core);
void recordUpscaling(const CommandStreamHandle& cmdStream, void recordUpscaling(const CommandStreamHandle& cmdStream,
const ImageHandle& input, const ImageHandle& input,
......
...@@ -10,7 +10,7 @@ namespace vkcv::upscaling { ...@@ -10,7 +10,7 @@ namespace vkcv::upscaling {
Core& m_core; Core& m_core;
public: public:
Upscaling(Core& core); explicit Upscaling(Core& core);
~Upscaling() = default; ~Upscaling() = default;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment