]> source.dussan.org Git - tigervnc.git/commitdiff
Merge "Pixel" type in to PixelFormat header 1587/head
authorPierre Ossman <ossman@cendio.se>
Sat, 18 Feb 2023 14:58:51 +0000 (15:58 +0100)
committerPierre Ossman <ossman@cendio.se>
Sat, 18 Feb 2023 14:58:51 +0000 (15:58 +0100)
It's a type specific to that class, so let's keep them close for
clarity.

common/rfb/CMsgHandler.h
common/rfb/Pixel.h [deleted file]
common/rfb/PixelBuffer.h
common/rfb/PixelFormat.h
vncviewer/DesktopWindow.h

index eb16bc9feb6719cd87d8cdf94d6762ea8a6478df..c427749ff6593e4116a65e6020f7d4a3c91d44e0 100644 (file)
@@ -26,7 +26,6 @@
 
 #include <stdint.h>
 
-#include <rfb/Pixel.h>
 #include <rfb/ServerParams.h>
 #include <rfb/Rect.h>
 #include <rfb/ScreenSet.h>
diff --git a/common/rfb/Pixel.h b/common/rfb/Pixel.h
deleted file mode 100644 (file)
index ce1d7b1..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/* Copyright (C) 2002-2005 RealVNC Ltd.  All Rights Reserved.
- * 
- * This is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this software; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
- * USA.
- */
-#ifndef __RFB_PIXEL_H__
-#define __RFB_PIXEL_H__
-
-#include <stdint.h>
-
-namespace rfb {
-  typedef uint32_t Pixel; // must be big enough to hold any pixel value
-}
-#endif
index 528f55c61d4be372d466eb06685f99419627d8b5..33a9c7ae97dc693616d34705f1b1ffe82651566e 100644 (file)
@@ -27,7 +27,6 @@
 
 #include <rfb/PixelFormat.h>
 #include <rfb/Rect.h>
-#include <rfb/Pixel.h>
 
 namespace rfb {
 
index ce9b3927b64647ef3ef4e5c2937b572d736bc3b9..f0a167677dd0f6dece4a05f7f527c635e9efa515 100644 (file)
 #ifndef __RFB_PIXELFORMAT_H__
 #define __RFB_PIXELFORMAT_H__
 
-#include <rfb/Pixel.h>
+#include <stdint.h>
 
 namespace rdr { class InStream; class OutStream; }
 
 namespace rfb {
 
+  typedef uint32_t Pixel; // must be big enough to hold any pixel value
+
   class PixelFormat {
   public:
     PixelFormat(int b, int d, bool e, bool t,
index a36d2bdc9addb5dfd2a6f1567ea71704a1243549..fd622c6d1706c612eb4a8f017f11f872581e54bd 100644 (file)
@@ -25,7 +25,6 @@
 #include <sys/time.h>
 
 #include <rfb/Rect.h>
-#include <rfb/Pixel.h>
 
 #include <FL/Fl_Window.H>