| Index: core/fxge/skia/fx_skia_device.h
|
| diff --git a/core/fxge/skia/fx_skia_device.h b/core/fxge/skia/fx_skia_device.h
|
| index dd3ba420e89bc31b4691ef57c7b0f82b14ed9f6a..085977b66ecc88e59bb199f8b4e5a58675768609 100644
|
| --- a/core/fxge/skia/fx_skia_device.h
|
| +++ b/core/fxge/skia/fx_skia_device.h
|
| @@ -114,8 +114,12 @@ class CFX_SkiaDeviceDriver : public IFX_RenderDeviceDriver {
|
| int alpha_flag = 0,
|
| void* pIccTransform = NULL,
|
| int blend_type = FXDIB_BLEND_NORMAL) override;
|
| - FX_BOOL ContinueDIBits(void* handle, IFX_Pause* pPause) override;
|
| - void CancelDIBits(void* handle) override;
|
| +
|
| + FX_BOOL ContinueDIBits(void* handle, IFX_Pause* pPause) override {
|
| + return FALSE;
|
| + }
|
| +
|
| + void CancelDIBits(void* handle) override {}
|
|
|
| FX_BOOL DrawDeviceText(int nChars,
|
| const FXTEXT_CHARPOS* pCharPos,
|
| @@ -138,6 +142,7 @@ class CFX_SkiaDeviceDriver : public IFX_RenderDeviceDriver {
|
| const CFX_GraphStateData* pGraphState,
|
| const SkMatrix& matrix);
|
| SkPictureRecorder* GetRecorder() const { return m_pRecorder; }
|
| + void PreMultiply();
|
|
|
| private:
|
| CFX_DIBitmap* m_pBitmap;
|
|
|