~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/compositor/operations/COM_CropOperation.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:
48
48
private:
49
49
public:
50
50
        CropOperation();
51
 
        void executePixel(float output[4], float x, float y, PixelSampler sampler);
 
51
        void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
52
52
};
53
53
 
54
54
class CropImageOperation : public CropBaseOperation {
57
57
        CropImageOperation();
58
58
        bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
59
59
        void determineResolution(unsigned int resolution[2], unsigned int preferedResolution[2]);
60
 
        void executePixel(float output[4], float x, float y, PixelSampler sampler);
 
60
        void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
61
61
 
62
62
};
63
63
#endif