17 lines
310 B
C++
17 lines
310 B
C++
#ifndef FLIPEFFECT_H
|
|
#define FLIPEFFECT_H
|
|
|
|
#include "../effect.h"
|
|
|
|
class FlipEffect : public Effect
|
|
{
|
|
public:
|
|
FlipEffect(Clip* c);
|
|
void process_coords(double timecode, GLTextureCoords &coords);
|
|
private:
|
|
EffectField* horizontal_field;
|
|
EffectField* vertical_field;
|
|
};
|
|
|
|
#endif // FLIPEFFECT_H
|