summaryrefslogtreecommitdiff
path: root/core/fxge/win32/cfx_psrenderer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxge/win32/cfx_psrenderer.cpp')
-rw-r--r--core/fxge/win32/cfx_psrenderer.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/core/fxge/win32/cfx_psrenderer.cpp b/core/fxge/win32/cfx_psrenderer.cpp
index 9e01bd2d06..9f5a7cd139 100644
--- a/core/fxge/win32/cfx_psrenderer.cpp
+++ b/core/fxge/win32/cfx_psrenderer.cpp
@@ -346,9 +346,8 @@ bool CFX_PSRenderer::SetDIBits(const RetainPtr<CFX_DIBBase>& pSource,
int left,
int top) {
StartRendering();
- CFX_Matrix matrix((float)(pSource->GetWidth()), 0.0f, 0.0f,
- -(float)(pSource->GetHeight()), (float)(left),
- (float)(top + pSource->GetHeight()));
+ CFX_Matrix matrix = CFX_RenderDevice::GetFlipMatrix(
+ pSource->GetWidth(), pSource->GetHeight(), left, top);
return DrawDIBits(pSource, color, matrix, 0);
}
@@ -360,8 +359,8 @@ bool CFX_PSRenderer::StretchDIBits(const RetainPtr<CFX_DIBBase>& pSource,
int dest_height,
uint32_t flags) {
StartRendering();
- CFX_Matrix matrix((float)(dest_width), 0.0f, 0.0f, (float)(-dest_height),
- (float)(dest_left), (float)(dest_top + dest_height));
+ CFX_Matrix matrix = CFX_RenderDevice::GetFlipMatrix(dest_width, dest_height,
+ dest_left, dest_top);
return DrawDIBits(pSource, color, matrix, flags);
}