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
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ namespace vkcv::upscaling {
class BilinearUpscaling : public Upscaling {
private:
public:
BilinearUpscaling(Core& core);
explicit BilinearUpscaling(Core& core);
void recordUpscaling(const CommandStreamHandle& cmdStream,
const ImageHandle& input,
......
......@@ -10,7 +10,7 @@ namespace vkcv::upscaling {
Core& m_core;
public:
Upscaling(Core& core);
explicit Upscaling(Core& core);
~Upscaling() = default;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment