X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Feffects%2Fsky.h;h=782aef1ceb1d0b0faa2c5e58a6407118834b0457;hb=adc26a2e141a2853b6c5025130c46a46cece4b84;hp=eb4f618d9607569bcdb32a9151a44ebf7442d8bd;hpb=06d83c11e10208478487dea864ddd7822630c391;p=libs%2Fgl.git diff --git a/source/effects/sky.h b/source/effects/sky.h index eb4f618d..782aef1c 100644 --- a/source/effects/sky.h +++ b/source/effects/sky.h @@ -2,15 +2,14 @@ #define MSP_GL_SKY_H_ #include "effect.h" -#include "framebuffer.h" #include "programdata.h" -#include "texture2d.h" +#include "rendertarget.h" namespace Msp { namespace GL { +class DirectionalLight; class Mesh; -class Light; class Program; /** @@ -41,30 +40,34 @@ public: }; private: - const Light &sun; - Texture2D transmittance_lookup; + Planet planet; + DirectionalLight &sun; + RenderTarget transmittance_lookup; const Program &transmittance_shprog; - Framebuffer transmittance_fbo; bool transmittance_lookup_dirty; - Texture2D distant; + RenderTarget distant; const Program &distant_shprog; - Framebuffer distant_fbo; const Mesh &fullscreen_mesh; const Program &backdrop_shprog; const Sampler &sampler; const Sampler &wrap_sampler; mutable ProgramData shdata; + float view_height; bool rendered; public: - Sky(Resources &, Renderable &, const Light &); + Sky(Renderable &, DirectionalLight &); void set_planet(const Planet &); void set_view_height(float); + Color get_transmittance(const Vector3 &); + virtual void setup_frame(Renderer &); virtual void finish_frame(); virtual void render(Renderer &, Tag = Tag()) const; + + virtual void set_debug_name(const std::string &); }; } // namespace GL