diff options
author | caryclark <caryclark@google.com> | 2016-05-13 10:57:20 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-13 10:57:20 -0700 |
commit | d6e18875ce024a341e221db689cedf10d433be8d (patch) | |
tree | b04343fd19f155c6606322dc39813840b07f107e /fpdfsdk/fpdfformfill.cpp | |
parent | 594b20b485046c954b68734e63e8d2c93fbe4ef5 (diff) | |
download | pdfium-d6e18875ce024a341e221db689cedf10d433be8d.tar.xz |
allow Skia to be the default graphics engine
PDFium uses fxge to denote the graphics engine used
for general rendering. When pdf_use_skia=1 is set,
use Skia as the default engine instead of antigrain.
R=tsepez@chromium.org,dsinclair@chromium.org
Review-Url: https://codereview.chromium.org/1975143002
Diffstat (limited to 'fpdfsdk/fpdfformfill.cpp')
-rw-r--r-- | fpdfsdk/fpdfformfill.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fpdfsdk/fpdfformfill.cpp b/fpdfsdk/fpdfformfill.cpp index 9f4e2944ca..153c1057a5 100644 --- a/fpdfsdk/fpdfformfill.cpp +++ b/fpdfsdk/fpdfformfill.cpp @@ -342,11 +342,9 @@ static void FFLCommon(FPDF_FORMHANDLE hHandle, FX_RECT clip(start_x, start_y, start_x + size_x, start_y + size_y); + std::unique_ptr<CFX_FxgeDevice> pDevice(new CFX_FxgeDevice); #ifdef _SKIA_SUPPORT_ - std::unique_ptr<CFX_SkiaDevice> pDevice(new CFX_SkiaDevice()); pDevice->AttachRecorder(static_cast<SkPictureRecorder*>(recorder)); -#else - std::unique_ptr<CFX_FxgeDevice> pDevice(new CFX_FxgeDevice); #endif pDevice->Attach((CFX_DIBitmap*)bitmap); pDevice->SaveState(); |