blob: 7c8d318ec33133c444e6b252256b021f14c3f59c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __FX_H
#define __FX_H
class Layer;
class Fx {
public:
virtual int render(Layer *l, int _w, int _h, int *input, int tw, int th, int twpitch)=0;
};
#endif
|