X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Feffects%2Fbloom.h;h=d6c9307cf8d43148818669f3007dbca223c8ec5d;hb=5bb193f930fb8738d099d630c4d625d82c1215b5;hp=6b10195b873e684d6af7634b85d8dd31a9f05879;hpb=7aaec9a70b8d7733429bec043f8e33e02956f266;p=libs%2Fgl.git diff --git a/source/effects/bloom.h b/source/effects/bloom.h index 6b10195b..d6c9307c 100644 --- a/source/effects/bloom.h +++ b/source/effects/bloom.h @@ -1,18 +1,15 @@ #ifndef MSP_GL_BLOOM_H_ #define MSP_GL_BLOOM_H_ -#include "framebuffer.h" -#include "mesh.h" #include "postprocessor.h" -#include "texture2d.h" -#include "texturing.h" -#include "program.h" #include "programdata.h" #include "rendertarget.h" namespace Msp { namespace GL { +class Program; + /** The Bloom post-processing effect causes very bright areas of the image to bleed into surrounding pixels. Commonly used together with HDR rendering. @@ -43,13 +40,12 @@ public: private: RenderTarget *target[2]; ProgramData common_shdata; - Program blur_shader; + const Program &blur_shader; ProgramData blur_shdata[2]; - Program combine_shader; - Texturing combine_texturing; - RefPtr quad; - RefPtr nearest_sampler; - RefPtr linear_sampler; + const Program &combine_shader; + const Mesh &quad; + const Sampler &nearest_sampler; + const Sampler &linear_sampler; public: Bloom(unsigned, unsigned); @@ -64,6 +60,8 @@ public: void set_strength(float); virtual void render(Renderer &, const Texture2D &, const Texture2D &); + + virtual void set_debug_name(const std::string &); }; } // namespace GL