kwin/effects/demo_liquid.h
Luboš Luňák e6069e9cf6 Arghl. Again a stupid bug caused by float having poor precision.
Reverting r700026 and changing floats to doubles again. I'd probably like
to change even the ones interfacing with OpenGL which I've left for now.


svn path=/trunk/KDE/kdebase/workspace/; revision=707987
2007-09-03 15:00:43 +00:00

52 lines
1.1 KiB
C++

/*****************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
Copyright (C) 2007 Rivo Laks <rivolaks@hot.ee>
You can Freely distribute this program under the GNU General Public
License. See the file "COPYING" for the exact licensing terms.
******************************************************************/
#ifndef KWIN_DEMO_LIQUID_H
#define KWIN_DEMO_LIQUID_H
// Include with base class for effects.
#include <kwineffects.h>
namespace KWin
{
class GLRenderTarget;
class GLTexture;
class GLShader;
/**
* Turns your desktop into a wavy (liquid) surface
**/
class LiquidEffect : public Effect
{
public:
LiquidEffect();
~LiquidEffect();
virtual void prePaintScreen( ScreenPrePaintData& data, int time );
virtual void postPaintScreen();
static bool supported();
protected:
bool loadData();
private:
GLTexture* mTexture;
GLRenderTarget* mRenderTarget;
GLShader* mShader;
bool mValid;
double mTime;
};
} // namespace
#endif