From: george82 Date: Sat, 23 Sep 2006 07:05:16 +0000 (+0000) Subject: Added the new methods to the ScaledDIBSectionBuffer class: X-Git-Tag: v0.0.90~384^2~207 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=70a0dc89397892d6e084dc7be030e7104fd30ce3;p=tigervnc.git Added the new methods to the ScaledDIBSectionBuffer class: getPixelFormat() and getScaledPixelFormat(). git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2101 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/win/rfb_win32/ScaledDIBSectionBuffer.h b/win/rfb_win32/ScaledDIBSectionBuffer.h index 69c38481..eb1d093f 100644 --- a/win/rfb_win32/ScaledDIBSectionBuffer.h +++ b/win/rfb_win32/ScaledDIBSectionBuffer.h @@ -47,6 +47,8 @@ namespace rfb { bool isScaling() const { return scaling; } virtual void setPF(const PixelFormat &pf); + virtual const PixelFormat& getPixelFormat() const { return pf; } + virtual const PixelFormat& getScaledPixelFormat() const { return getPF(); } virtual void setSize(int w, int h); virtual void setScale(int scale) { setScaleRatio(double(scale)/100.0); }; virtual void setScaleRatio(double scale_ratio);