Files
oak-editor/effects/internal/solideffect.h
T
mass db8230075c Add checkerboard generator to solid effects
tidy up checkerboard code

make checkerboard square with scaling

fix up

remove unused #define, now calculating size of checkers on-the-fly
2018-11-20 02:18:36 +10:30

21 lines
417 B
C++

#ifndef SOLIDEFFECT_H
#define SOLIDEFFECT_H
#include "project/effect.h"
class QOpenGLTexture;
#include <QImage>
class SolidEffect : public Effect {
Q_OBJECT
public:
SolidEffect(Clip* c, const EffectMeta *em);
EffectField* solid_type;
EffectField* solid_color_field;
EffectField* opacity_field;
EffectField* solid_width_field;
void redraw(double timecode);
};
#endif // SOLIDEFFECT_H