]> source.dussan.org Git - tigervnc.git/commitdiff
Remove unused setPixelFormat() callback
authorPierre Ossman <ossman@cendio.se>
Thu, 28 Dec 2023 12:40:09 +0000 (13:40 +0100)
committerPierre Ossman <ossman@cendio.se>
Mon, 12 Aug 2024 14:53:09 +0000 (16:53 +0200)
This was made obsolete in dd45b44 when we extended the serverInit()
callback.

common/rfb/CMsgHandler.cxx
common/rfb/CMsgHandler.h
tests/perf/decperf.cxx
tests/perf/encperf.cxx

index c3594af9edb8daf3103386b0657645b77ce6b3a4..4489dbd4e4ed81458ae3b2d5ed1a7e3badeebfb2 100644 (file)
@@ -59,11 +59,6 @@ void CMsgHandler::setExtendedDesktopSize(unsigned reason, unsigned result,
   server.setDimensions(width, height, layout);
 }
 
-void CMsgHandler::setPixelFormat(const PixelFormat& pf)
-{
-  server.setPF(pf);
-}
-
 void CMsgHandler::setName(const char* name)
 {
   server.setName(name);
index 16a53c6a600ebad7dd697da17ce3b9fa5043f838..9e5f7de21c23e863551a73d365b77dbc9a22bc0a 100644 (file)
@@ -39,12 +39,12 @@ namespace rfb {
     CMsgHandler();
     virtual ~CMsgHandler();
 
-    // The following methods are called as corresponding messages are read.  A
-    // derived class should override these methods as desired.  Note that for
-    // the setDesktopSize(), setExtendedDesktopSize(), setPixelFormat(),
-    // setName(), serverInit() and clipboardCaps methods, a derived class
-    // should call on to CMsgHandler's methods to set the members of "server"
-    // appropriately.
+    // The following methods are called as corresponding messages are
+    // read.  A derived class should override these methods as desired.
+    // Note that for the setDesktopSize(), setExtendedDesktopSize(),
+    // setName(), serverInit() and handleClipboardCaps() methods, a
+    // derived class should call on to CMsgHandler's methods to set the
+    // members of "server" appropriately.
 
     virtual void setDesktopSize(int w, int h);
     virtual void setExtendedDesktopSize(unsigned reason, unsigned result,
@@ -53,7 +53,6 @@ namespace rfb {
     virtual void setCursor(int width, int height, const Point& hotspot,
                            const uint8_t* data) = 0;
     virtual void setCursorPos(const Point& pos) = 0;
-    virtual void setPixelFormat(const PixelFormat& pf);
     virtual void setName(const char* name);
     virtual void fence(uint32_t flags, unsigned len, const uint8_t data[]);
     virtual void endOfContinuousUpdates();
index 66a50d024df89d0a690c5321bd219172168db36e..ef53a6866309a43cd6d27092619e3e6b2f490688 100644 (file)
@@ -68,7 +68,6 @@ public:
   ~CConn();
 
   void initDone() override;
-  void setPixelFormat(const rfb::PixelFormat& pf) override;
   void setCursor(int, int, const rfb::Point&, const uint8_t*) override;
   void setCursorPos(const rfb::Point&) override;
   void framebufferUpdateStart() override;
@@ -139,12 +138,6 @@ void CConn::initDone()
                                              server.height()));
 }
 
-void CConn::setPixelFormat(const rfb::PixelFormat& /*pf*/)
-{
-  // Override format
-  CConnection::setPixelFormat(filePF);
-}
-
 void CConn::setCursor(int, int, const rfb::Point&, const uint8_t*)
 {
 }
index 25dca4908c01b38da83522c4efc24c3e7ba6878d..ac8e9d47adef6376507d70c25acdc4384c8226b1 100644 (file)
@@ -189,7 +189,7 @@ CConn::CConn(const char *filename)
   // Nor the frame buffer size and format
   rfb::PixelFormat pf;
   pf.parse(format);
-  setPixelFormat(pf);
+  server.setPF(pf);
   setDesktopSize(width, height);
 
   sc = new SConn();