diff options
author | Jane Liu <janeliulwq@google.com> | 2017-08-18 14:04:56 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-21 14:50:36 +0000 |
commit | 2f7653c0d8fe60f1a4956382dcb3d73822694dda (patch) | |
tree | 5841475fc11d51c0787aed1e73b80e46805e967d /core/fxge/cfx_renderdevice.h | |
parent | 8b2107ed93465c6f9c1dd647e93446354dbe3738 (diff) | |
download | pdfium-2f7653c0d8fe60f1a4956382dcb3d73822694dda.tar.xz |
Converted DrawCosmeticLine() to take point objects
Converted CFX_RenderDevice::DrawCosmeticLine() and IFX_RenderDeviceDriver::
DrawCosmeticLine() to take in CFX_PointF objects instead of two coordinates
per point.
Bug=pdfium:769
Change-Id: I6116e4106a61487184a71e79c1dca3a85e8c7c27
Reviewed-on: https://pdfium-review.googlesource.com/11410
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxge/cfx_renderdevice.h')
-rw-r--r-- | core/fxge/cfx_renderdevice.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/core/fxge/cfx_renderdevice.h b/core/fxge/cfx_renderdevice.h index 53443ab72f..49a0f3e0bc 100644 --- a/core/fxge/cfx_renderdevice.h +++ b/core/fxge/cfx_renderdevice.h @@ -288,10 +288,8 @@ class CFX_RenderDevice { uint32_t stroke_color, int fill_mode, int blend_type); - bool DrawCosmeticLine(float x1, - float y1, - float x2, - float y2, + bool DrawCosmeticLine(const CFX_PointF& ptMoveTo, + const CFX_PointF& ptLineTo, uint32_t color, int fill_mode, int blend_type); |