diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/outdev.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index ec1063b6b717..80178b3c191e 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -275,6 +275,8 @@ private: ImplOutDevData* mpOutDevData; std::vector< VCLXGraphics* >* mpUnoGraphicsList; vcl::PDFWriterImpl* mpPDFWriter; + /// Set if we are doing the tiled rendering. + bool mbTiledRendering; vcl::ExtOutDevData* mpExtOutDevData; // TEMP TEMP TEMP @@ -476,6 +478,11 @@ public: void SetExtOutDevData( vcl::ExtOutDevData* pExtOutDevData ) { mpExtOutDevData = pExtOutDevData; } vcl::ExtOutDevData* GetExtOutDevData() const { return mpExtOutDevData; } + /// Set if we are doing tiled rendering. + void setTiledRendering(bool bTiledRendering); + /// Are we doing tiled rendering? + bool isTiledRendering() const; + ///@} |