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

@@ -20,7 +20,7 @@ public:
inline double delay() const { return delay_; }
// implementation of FrameBufferFilter
Type type() const { return FrameBufferFilter::FILTER_DELAY; }
Type type() const override { return FrameBufferFilter::FILTER_DELAY; }
uint texture () const override;
glm::vec3 resolution () const override;
void update (float dt) override;