Make the conversion of logical coordinates to the device ones more precise by
avoiding errors due to truncation of floating point values to integer ones.
See #13284.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67961
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#include "wx/bitmap.h"
#include "wx/dcmemory.h"
#include "wx/log.h"
#include "wx/bitmap.h"
#include "wx/dcmemory.h"
#include "wx/log.h"
#include "wx/icon.h"
#include "wx/dcprint.h"
#include "wx/module.h"
#include "wx/icon.h"
#include "wx/dcprint.h"
#include "wx/module.h"
logExtX, logExtY; // Window, i.e. logical coordinate space, extents.
if ( m_scaleX >= 1 )
{
logExtX, logExtY; // Window, i.e. logical coordinate space, extents.
if ( m_scaleX >= 1 )
{
- devExtX = VIEWPORT_EXTENT*m_scaleX;
+ devExtX = wxRound(VIEWPORT_EXTENT*m_scaleX);
logExtX = m_signX*VIEWPORT_EXTENT;
}
else
{
devExtX = VIEWPORT_EXTENT;
logExtX = m_signX*VIEWPORT_EXTENT;
}
else
{
devExtX = VIEWPORT_EXTENT;
- logExtX = m_signX*VIEWPORT_EXTENT/m_scaleX;
+ logExtX = wxRound(m_signX*VIEWPORT_EXTENT/m_scaleX);
- devExtY = VIEWPORT_EXTENT*m_scaleY;
+ devExtY = wxRound(VIEWPORT_EXTENT*m_scaleY);
logExtY = m_signY*VIEWPORT_EXTENT;
}
else
{
devExtY = VIEWPORT_EXTENT;
logExtY = m_signY*VIEWPORT_EXTENT;
}
else
{
devExtY = VIEWPORT_EXTENT;
- logExtY = m_signY*VIEWPORT_EXTENT/m_scaleY;
+ logExtY = wxRound(m_signY*VIEWPORT_EXTENT/m_scaleY);
}
::SetViewportExtEx(GetHdc(), devExtX, devExtY, NULL);
}
::SetViewportExtEx(GetHdc(), devExtX, devExtY, NULL);