]> source.dussan.org Git - tigervnc.git/commitdiff
Unused function commented out.
authorConstantin Kaplinsky <const@tightvnc.com>
Fri, 31 Aug 2007 15:44:12 +0000 (15:44 +0000)
committerConstantin Kaplinsky <const@tightvnc.com>
Fri, 31 Aug 2007 15:44:12 +0000 (15:44 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2324 3789f03b-4d11-0410-bbf8-ca57d06f2519

common/rfb/SMsgWriter.cxx
common/rfb/SMsgWriter.h

index 085dfc1604041521fff8cbc15767aae22cc7026c..f3079eed9732edd6e39b237fcb3733906a6d795a 100644 (file)
@@ -114,9 +114,9 @@ int SMsgWriter::getNumRects(const Rect &r)
   return encoders[encoding]->getNumRects(r);
 }
 
-// FIXME: This functions does not compute the number of rectangles correctly
-//        if the Tight encoder is used (but currently that does not matter
-//        because this function is never used).
+// 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)
 {
@@ -124,6 +124,7 @@ void SMsgWriter::writeFramebufferUpdate(const UpdateInfo& ui, ImageGetter* ig,
   writeRects(ui, ig, updatedRegion);
   writeFramebufferUpdateEnd();
 }
+*/
 
 void SMsgWriter::writeRects(const UpdateInfo& ui, ImageGetter* ig,
                             Region* updatedRegion)
index ed8ad0ef54e3ebd47c79f36998bc63a8f9efab08..d4c5bf82d31337d1f8b8198a7725270577cf83d6 100644 (file)
@@ -94,8 +94,13 @@ namespace rfb {
     // 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 functions 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);
+    */
 
     // writeRects() accepts an UpdateInfo (changed & copied regions) and an
     // ImageGetter to fetch pixels from.  It then calls writeCopyRect() and