Kaydet (Commit) 29daf8ef authored tarafından Michael Meeks's avatar Michael Meeks Kaydeden (comit) Markus Mohrhard

vcl: re-init windows graphics impl after virtualdevice size change.

Change-Id: I6188617aa2cf2e237ec0724d1442564fbf3fe297
üst 3cc83309
......@@ -26,6 +26,7 @@
#include <win/salinst.h>
#include <win/salgdi.h>
#include <win/salvd.h>
#include "opengl/win/gdiimpl.hxx"
HBITMAP WinSalVirtualDevice::ImplCreateVirDevBitmap(HDC hDC, long nDX, long nDY, sal_uInt16 nBitCount, void **ppData)
{
......@@ -213,6 +214,14 @@ bool WinSalVirtualDevice::SetSize( long nDX, long nDY )
SelectBitmap( getHDC(), hNewBmp );
DeleteBitmap( mhBmp );
mhBmp = hNewBmp;
if (mpGraphics)
{
WinOpenGLSalGraphicsImpl *pImpl;
pImpl = dynamic_cast< WinOpenGLSalGraphicsImpl * >(mpGraphics->getImpl());
if (pImpl)
pImpl->Init();
}
return TRUE;
}
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment