diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/outdev/bitmap.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/source/outdev/bitmap.cxx b/vcl/source/outdev/bitmap.cxx index ea29dc438119..83b625d828cb 100644 --- a/vcl/source/outdev/bitmap.cxx +++ b/vcl/source/outdev/bitmap.cxx @@ -1210,6 +1210,12 @@ void OutputDevice::DrawTransformedBitmapEx( if ( !mpGraphics && !AcquireGraphics() ) return; + if ( mbInitClipRegion ) + InitClipRegion(); + + if ( mbOutputClipped ) + return; + #ifdef DO_TIME_TEST // MM02 start time test when some data (not for trivial stuff). Will // trigger and show data when leaving this method by destructing helper |