]> source.dussan.org Git - tigervnc.git/commitdiff
Remove unsused, commented out code
authorPierre Ossman <ossman@cendio.se>
Thu, 16 Jan 2014 12:23:47 +0000 (13:23 +0100)
committerPierre Ossman <ossman@cendio.se>
Mon, 7 Jul 2014 11:27:07 +0000 (13:27 +0200)
common/rfb/SMsgWriter.cxx
common/rfb/SMsgWriter.h

index f47f3eeb7d05c9c8b884e75bf2e0017d69c97e6d..509ffbf526c76f0d593f098056a35b9c0aa90160 100644 (file)
@@ -122,18 +122,6 @@ bool SMsgWriter::needFakeUpdate()
   return false;
 }
 
-// FIXME: This functions is not used because it incorrectly computes
-//        the number of rectangles if the Tight encoder is used.
-/*
-void SMsgWriter::writeFramebufferUpdate(const UpdateInfo& ui, ImageGetter* ig,
-                                        Region* updatedRegion)
-{
-  writeFramebufferUpdateStart(ui.numRects());
-  writeRects(ui, ig, updatedRegion);
-  writeFramebufferUpdateEnd();
-}
-*/
-
 bool SMsgWriter::needNoDataUpdate()
 {
   return false;
index 3933b38cea39428cf52527178614a818edf0eb1a..edf294475def6e1e4cb9f0f375ecc12c0846a98f 100644 (file)
@@ -109,18 +109,6 @@ namespace rfb {
     // order to flush out pseudo-rectangles to the client.
     virtual bool needFakeUpdate();
 
-    // writeFramebufferUpdate() writes a framebuffer update using the given
-    // UpdateInfo and ImageGetter.  On a V3 writer this may have
-    // pseudo-rectangles for setDesktopSize and setCursor added to it, and so
-    // may invoke writeSetCursorCallback().
-    //
-    // FIXME: This function is not used because it incorrectly computes
-    //        the number of rectangles if the Tight encoder is used.
-    /*
-    virtual void writeFramebufferUpdate(const UpdateInfo& ui, ImageGetter* ig,
-                                        Region* updatedRegion);
-    */
-
     // needNoDataUpdate() returns true when an update without any
     // framebuffer changes need to be sent (using writeNoDataUpdate()).
     // Commonly this is an update that modifies the size of the framebuffer