diff options
author | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-05-16 09:07:52 +0100 |
---|---|---|
committer | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-06-25 13:04:28 +0100 |
commit | 0434043aed646ef853eb60dcb01909745caec87e (patch) | |
tree | 7e50e1e041b48e64dcace917378fd1c2e2d0121c /vcl/inc | |
parent | 3a26638155de5ba804f5260dfb72b392424b9b50 (diff) |
Return a bitmap buffer for tiled rendering from LibLO.
We still need some way of managing the buffers properly rather
than just keeping a static reference to the last buffer
that was rendered.
Change-Id: I17940c758948aa9418f4e0216ecd253d128cd04f
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/headless/svpvd.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/inc/headless/svpvd.hxx b/vcl/inc/headless/svpvd.hxx index 33926757a0c8..e4d37fcabeb1 100644 --- a/vcl/inc/headless/svpvd.hxx +++ b/vcl/inc/headless/svpvd.hxx @@ -47,6 +47,8 @@ public: virtual bool SetSize( long nNewDX, long nNewDY ) SAL_OVERRIDE; virtual bool SetSizeUsingBuffer( long nNewDX, long nNewDY, const basebmp::RawMemorySharedArray &pBuffer ) SAL_OVERRIDE; virtual void GetSize( long& rWidth, long& rHeight ) SAL_OVERRIDE; + + basebmp::BitmapDeviceSharedPtr getBitmapDevice() { return m_aDevice; } }; #endif // INCLUDED_VCL_INC_HEADLESS_SVPVD_HXX |