X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Feffects%2Fpostprocessor.h;h=aabace6c94159aa120a6e59e4352ce18f5f4f9cc;hp=c107d885f658e028522fdb0fe463bbd755d60d1d;hb=fe2fc291a4fc618425c64112c9ffd3519f0b8a3e;hpb=7aaec9a70b8d7733429bec043f8e33e02956f266 diff --git a/source/effects/postprocessor.h b/source/effects/postprocessor.h index c107d885..aabace6c 100644 --- a/source/effects/postprocessor.h +++ b/source/effects/postprocessor.h @@ -36,11 +36,6 @@ public: virtual PostProcessor *create(unsigned, unsigned) const = 0; }; -private: - static WeakPtr fullscreen_quad; - static WeakPtr nearest_sampler; - static WeakPtr linear_sampler; - protected: PostProcessor() { } public: @@ -50,14 +45,6 @@ public: virtual void render(const Texture2D &, const Texture2D &) { } virtual void render(Renderer &, const Texture2D &, const Texture2D &); - -protected: - /** Returns a mesh consisting of a single quad, covering the entire screen. - The vertices are in normalized device coordinates. */ - static RefPtr get_fullscreen_quad(); - - static RefPtr get_nearest_sampler(); - static RefPtr get_linear_sampler(); }; } // namespace GL