diff options
Diffstat (limited to 'common/rfb/ComparingUpdateTracker.h')
-rw-r--r-- | common/rfb/ComparingUpdateTracker.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/common/rfb/ComparingUpdateTracker.h b/common/rfb/ComparingUpdateTracker.h index 5d2e5edf..fccc2222 100644 --- a/common/rfb/ComparingUpdateTracker.h +++ b/common/rfb/ComparingUpdateTracker.h @@ -29,14 +29,23 @@ namespace rfb { ~ComparingUpdateTracker(); // compare() does the comparison and reduces its changed and copied regions - // as appropriate. + // as appropriate. Returns true if the regions were altered. - virtual void compare(); + virtual bool compare(); + + // enable()/disable() turns the comparing functionality on/off. With it + // disabled, the object will behave like a dumb update tracker (i.e. + // compare() will be a no-op). It is harmless to repeatedly call these + // methods. + + virtual void enable(); + virtual void disable(); private: void compareRect(const Rect& r, Region* newchanged); PixelBuffer* fb; ManagedPixelBuffer oldFb; bool firstCompare; + bool enabled; }; } |