~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/compositor/operations/COM_PlaneTrackWarpImageOperation.h

  • Committer: Reinhard Tartler
  • Date: 2014-05-31 01:50:05 UTC
  • mfrom: (14.2.27 sid)
  • Revision ID: siretart@tauware.de-20140531015005-ml6druahuj82nsav
mergeĀ fromĀ debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
class PlaneTrackWarpImageOperation : public PlaneTrackCommonOperation {
37
37
protected:
38
38
        SocketReader *m_pixelReader;
39
 
        int m_osa;
40
 
        float m_jitter[32][2];
 
39
        float m_perspectiveMatrix[3][3];
41
40
 
42
41
public:
43
42
        PlaneTrackWarpImageOperation();
45
44
        void initExecution();
46
45
        void deinitExecution();
47
46
 
48
 
        void executePixel(float output[4], float x, float y, PixelSampler sampler);
 
47
        void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
 
48
        void pixelTransform(const float xy[2], float r_uv[2], float r_deriv[2][2]);
49
49
 
50
50
        bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
51
51
};