From 3851aff62c7ad2f9c942b4d5d095ec0e6610bb84 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Wed, 21 Mar 2018 17:24:46 +0000 Subject: Add helpers to work with FXDIB_Format. Helper functions make getting the bpp and component count more readable. Change-Id: Ie0f97d52136d11ef5251f6e22748e87aea289ae1 Reviewed-on: https://pdfium-review.googlesource.com/28572 Commit-Queue: Lei Zhang Reviewed-by: Henrique Nakashima --- core/fxge/dib/cfx_filtereddib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/fxge/dib/cfx_filtereddib.cpp') diff --git a/core/fxge/dib/cfx_filtereddib.cpp b/core/fxge/dib/cfx_filtereddib.cpp index 96fc8062a0..1d5ed6200c 100644 --- a/core/fxge/dib/cfx_filtereddib.cpp +++ b/core/fxge/dib/cfx_filtereddib.cpp @@ -17,9 +17,9 @@ void CFX_FilteredDIB::LoadSrc(const RetainPtr& pSrc) { m_Width = pSrc->GetWidth(); m_Height = pSrc->GetHeight(); FXDIB_Format format = GetDestFormat(); - m_bpp = static_cast(format); + m_bpp = GetBppFromFormat(format); m_AlphaFlag = static_cast(format >> 8); - m_Pitch = (m_Width * (format & 0xff) + 31) / 32 * 4; + m_Pitch = (m_Width * m_bpp + 31) / 32 * 4; m_pPalette.reset(GetDestPalette()); m_Scanline.resize(m_Pitch); } -- cgit v1.2.3