From 36e258b475702bdb1a95a88fcebd78b51069c532 Mon Sep 17 00:00:00 2001 From: caryclark Date: Thu, 2 Jun 2016 08:59:20 -0700 Subject: The PDFium source in core/fxge/dib implements a bit-blitting backend. This code has several disadvantages over a more modern graphics engine: - no SIMD support - no GPU support - limited quality Further, calling this code locks in the perceived resolution, so that the output cannot be scaled without additional loss. By directing all bitmap drawing through CFX_SkiaDeviceDriver::StartDIBits, Skia can handle all appropriate bitmap optimizations. To that end, SetDIBits and StretchDIBits now call StartDIBits. Other changes: Skia's bitmaps are premultiplied. PDF contains bitmaps that are unpremultiplied. PDFium appears to use premultiplied bitmaps sometimes, and unpremultiplied bitmaps elsewhere. Add a debug check for unpremultiplied bits in Skia's driver, and add a utility to premultiply PDFium's bitmaps' bits. PDFium supports a 24 bit RGB bitmap padded to a 32 bit word. Set the high byte so that Skia can treat this as an ARGB bitmap. Defer the application of the alpha value to the draw call rather than calling MultiplyAlpha where possible. Allow the destination bitmap to be alpha 8 or argb 32. Review-Url: https://codereview.chromium.org/2025043002 --- core/fxge/include/fx_ge.h | 1 + 1 file changed, 1 insertion(+) (limited to 'core/fxge/include/fx_ge.h') diff --git a/core/fxge/include/fx_ge.h b/core/fxge/include/fx_ge.h index 6a3113d070..8111e46d13 100644 --- a/core/fxge/include/fx_ge.h +++ b/core/fxge/include/fx_ge.h @@ -412,6 +412,7 @@ class CFX_FxgeDevice : public CFX_RenderDevice { #ifdef _SKIA_SUPPORT_ bool AttachRecorder(SkPictureRecorder* recorder); SkPictureRecorder* CreateRecorder(int size_x, int size_y); + void PreMultiply(); #endif protected: -- cgit v1.2.3