Compilation fix

This commit is contained in:
Bruno
2022-05-18 12:50:07 +02:00
parent 852a8d04c9
commit cc69baf0dd
4 changed files with 9 additions and 5 deletions

View File

@@ -56,7 +56,7 @@ public:
PassthroughFilter();
// implementation of FrameBufferFilter
Type type() const { return FrameBufferFilter::FILTER_PASSTHROUGH; }
Type type() const override { return FrameBufferFilter::FILTER_PASSTHROUGH; }
uint texture() const override;
glm::vec3 resolution() const override;
};