fx.h 170 B

123456789101112
  1. #ifndef __FX_H
  2. #define __FX_H
  3. class Layer;
  4. class Fx {
  5. public:
  6. virtual int render(Layer *l, int _w, int _h, int *input, int tw, int th, int twpitch)=0;
  7. };
  8. #endif