From ed7da31f67e93c8923669ad496126aa005a8d3a2 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Thu, 25 Oct 2018 22:50:41 +0000 Subject: Simplify some code in CGdiDisplayDriver. - GDI_StretchBitMask(), which is not an override, has a flags parameter that is never used. Remove it. - StretchDIBits() checks its flags parameter and does an early return, but still continue to use it afterwards when its only possible value is 0. Replace the flags variable with 0. Change-Id: Iad63557a1c28f2b5b84260a6b5498c1d7beada7f Reviewed-on: https://pdfium-review.googlesource.com/c/44611 Commit-Queue: Lei Zhang Reviewed-by: Tom Sepez --- core/fxge/win32/win32_int.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'core/fxge/win32/win32_int.h') diff --git a/core/fxge/win32/win32_int.h b/core/fxge/win32/win32_int.h index 43ec6056fd..db0e3894c5 100644 --- a/core/fxge/win32/win32_int.h +++ b/core/fxge/win32/win32_int.h @@ -112,8 +112,7 @@ class CGdiDeviceDriver : public RenderDeviceDriverIface { int dest_top, int dest_width, int dest_height, - uint32_t bitmap_color, - uint32_t flags); + uint32_t bitmap_color); HDC m_hDC; bool m_bMetafileDCType; -- cgit v1.2.3