Files
oak-editor/effects/video/gaussianblureffect.h
T

19 lines
398 B
C++

#ifndef GAUSSIANBLUREFFECT_H
#define GAUSSIANBLUREFFECT_H
#include "../effect.h"
class GaussianBlurEffect : public Effect
{
public:
GaussianBlurEffect(Clip* c);
void process_gl(double timecode, GLTextureCoords &coords);
private:
EffectField* radius_val;
EffectField* sigma_val;
EffectField* horiz_val;
EffectField* vert_val;
};
#endif // GAUSSIANBLUREFFECT_H