Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: core/fxge/ge/fx_ge_device.cpp

Issue 2216853004: Refactor fx_ge part 2 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Fixing build, comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fxge/ge/cfx_pathdata.cpp ('k') | core/fxge/ge/fx_ge_path.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "core/fxge/include/cfx_pathdata.h"
7 #include "core/fxge/include/fx_ge.h" 8 #include "core/fxge/include/fx_ge.h"
8 #include "core/fxge/include/ifx_renderdevicedriver.h" 9 #include "core/fxge/include/ifx_renderdevicedriver.h"
9 10
10 #if defined _SKIA_SUPPORT_ 11 #if defined _SKIA_SUPPORT_
11 #include "third_party/skia/include/core/SkTypes.h" 12 #include "third_party/skia/include/core/SkTypes.h"
12 #endif 13 #endif
13 14
14 CFX_RenderDevice::CFX_RenderDevice() 15 CFX_RenderDevice::CFX_RenderDevice()
15 : m_pBitmap(nullptr), 16 : m_pBitmap(nullptr),
16 m_Width(0), 17 m_Width(0),
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 void CFX_RenderDevice::CancelDIBits(void* handle) { 488 void CFX_RenderDevice::CancelDIBits(void* handle) {
488 m_pDeviceDriver->CancelDIBits(handle); 489 m_pDeviceDriver->CancelDIBits(handle);
489 } 490 }
490 491
491 #ifdef _SKIA_SUPPORT_ 492 #ifdef _SKIA_SUPPORT_
492 493
493 void CFX_RenderDevice::DebugVerifyBitmapIsPreMultiplied() const { 494 void CFX_RenderDevice::DebugVerifyBitmapIsPreMultiplied() const {
494 SkASSERT(0); 495 SkASSERT(0);
495 } 496 }
496 #endif 497 #endif
OLDNEW
« no previous file with comments | « core/fxge/ge/cfx_pathdata.cpp ('k') | core/fxge/ge/fx_ge_path.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698