]> source.dussan.org Git - tigervnc.git/commitdiff
Remove unused (and commented out) PixelBuffer::getPixel()
authorPierre Ossman <ossman@cendio.se>
Tue, 28 Jan 2014 15:43:22 +0000 (16:43 +0100)
committerPierre Ossman <ossman@cendio.se>
Mon, 7 Jul 2014 11:27:08 +0000 (13:27 +0200)
common/rfb/PixelBuffer.cxx
common/rfb/PixelBuffer.h

index 60957a25dbed854f15591ce3a880d5402ddffef1..293403b65d35e45f873fba1a94522a0a92df00de 100644 (file)
@@ -64,19 +64,6 @@ PixelBuffer::getImage(void* imageBuf, const Rect& r, int outStride) {
   }
 }
 
-/* ***
-Pixel PixelBuffer::getPixel(const Point& p) {
-  int stride;
-  Rect r = Rect(p.x, p.y, p.x+1, p.y+1);
-  switch(format.bpp) {
-  case 8: return *((rdr::U8*)getDataAt(r, &stride));
-  case 16: return *((rdr::U16*)getDataAt(r, &stride));
-  case 32: return *((rdr::U32*)getDataAt(r, &stride));
-  default: return 0;
-  };
-}
-*/
-
 
 static void fillRect8(U8 *buf, int stride, const Rect& r, Pixel pix)
 {
index e870622e18bc3100f72df561f42d1fa1d55ba942..0d1526357af000efffcd41a464a6037b33559abb 100644 (file)
@@ -78,10 +78,6 @@ namespace rfb {
     //   stride.
     virtual void getImage(void* imageBuf, const Rect& r, int stride=0);
 
-    // Get the data at (x,y) as a Pixel.
-    //   VERY INEFFICIENT!!!
-    // *** Pixel getPixel(const Point& p);
-
     ///////////////////////////////////////////////
     // Framebuffer update methods
     //