mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-03-29 18:54:07 +00:00
git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@1078 6778bc44-b910-0410-a7a0-be141de4315d
32 lines
408 B
C++
32 lines
408 B
C++
/*
|
|
* VideoEcho.hpp
|
|
*
|
|
* Created on: Jun 29, 2008
|
|
* Author: pete
|
|
*/
|
|
|
|
#ifndef VIDEOECHO_HPP_
|
|
#define VIDEOECHO_HPP_
|
|
|
|
#include "Renderable.hpp"
|
|
|
|
enum Orientation
|
|
{
|
|
Normal=0, FlipX, FlipY, FlipXY
|
|
};
|
|
|
|
class VideoEcho: public RenderItem
|
|
{
|
|
public:
|
|
VideoEcho();
|
|
virtual ~VideoEcho();
|
|
|
|
float a;
|
|
float zoom;
|
|
Orientation orientation;
|
|
|
|
void Draw(RenderContext &context);
|
|
};
|
|
|
|
#endif /* VIDEOECHO_HPP_ */
|