From 0c9bd4b0ba28f5aab8b1f3e2eb8d83e01915e2b8 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Wed, 9 Jul 2014 16:44:11 +0200 Subject: Use PixelBuffer objects as the interface for encoders and decoders This avoid a lot of unnecessary middle men. This also pushes the responsibility for pixel format conversion into the encoders and decoders. The new bufferFromBuffer() is used for direct conversion, rather than PixelTransformer/TransImageGetter. --- common/rfb/CopyRectDecoder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/rfb/CopyRectDecoder.h') diff --git a/common/rfb/CopyRectDecoder.h b/common/rfb/CopyRectDecoder.h index 5932066b..d14bf926 100644 --- a/common/rfb/CopyRectDecoder.h +++ b/common/rfb/CopyRectDecoder.h @@ -26,7 +26,7 @@ namespace rfb { public: CopyRectDecoder(CConnection* conn); virtual ~CopyRectDecoder(); - virtual void readRect(const Rect& r, CMsgHandler* handler); + virtual void readRect(const Rect& r, ModifiablePixelBuffer* pb); }; } #endif -- cgit v1.2.3