diff options
Diffstat (limited to 'core/fxge/skia')
-rw-r--r-- | core/fxge/skia/fx_skia_device.cpp | 4 | ||||
-rw-r--r-- | core/fxge/skia/fx_skia_device.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/fxge/skia/fx_skia_device.cpp b/core/fxge/skia/fx_skia_device.cpp index 8038ec5de1..6e27ea1775 100644 --- a/core/fxge/skia/fx_skia_device.cpp +++ b/core/fxge/skia/fx_skia_device.cpp @@ -714,7 +714,7 @@ class SkiaState { if (Accumulator::kText == m_type || drawIndex != m_commandIndex || (Accumulator::kPath == m_type && DrawChanged(pMatrix, pDrawState, fill_color, stroke_color, fill_mode, - blend_type, m_pDriver->m_bGroupKnockout))) { + blend_type, m_pDriver->GetGroupKnockout()))) { Flush(); } if (Accumulator::kPath != m_type) { @@ -729,7 +729,7 @@ class SkiaState { m_fillColor = fill_color; m_strokeColor = stroke_color; m_blendType = blend_type; - m_groupKnockout = m_pDriver->m_bGroupKnockout; + m_groupKnockout = m_pDriver->GetGroupKnockout(); if (pMatrix) m_drawMatrix = *pMatrix; m_drawIndex = m_commandIndex; diff --git a/core/fxge/skia/fx_skia_device.h b/core/fxge/skia/fx_skia_device.h index 7dcf362c66..4423081251 100644 --- a/core/fxge/skia/fx_skia_device.h +++ b/core/fxge/skia/fx_skia_device.h @@ -156,9 +156,9 @@ class CFX_SkiaDeviceDriver : public IFX_RenderDeviceDriver { void DebugVerifyBitmapIsPreMultiplied() const; void Dump() const; - private: - friend class SkiaState; + bool GetGroupKnockout() const { return m_bGroupKnockout; } + private: RetainPtr<CFX_DIBitmap> m_pBitmap; RetainPtr<CFX_DIBitmap> m_pOriDevice; SkCanvas* m_pCanvas; |