OLD | NEW |
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/fxcrt/include/fx_system.h" | 7 #include "core/fxcrt/include/fx_system.h" |
8 #include "core/include/fxge/fx_ge.h" | 8 #include "core/fxge/include/fx_ge.h" |
9 | 9 |
10 #if _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_ | 10 #if _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_ |
11 | 11 |
12 #include "core/fxge/agg/fx_agg_driver.h" | 12 #include "core/fxge/agg/fx_agg_driver.h" |
13 #include "core/fxge/apple/apple_int.h" | 13 #include "core/fxge/apple/apple_int.h" |
14 #include "core/fxge/dib/dib_int.h" | 14 #include "core/fxge/dib/dib_int.h" |
15 #include "core/fxge/ge/fx_text_int.h" | 15 #include "core/fxge/ge/fx_text_int.h" |
16 #include "core/include/fxge/fx_freetype.h" | 16 #include "core/fxge/include/fx_freetype.h" |
17 #include "core/include/fxge/fx_ge_apple.h" | 17 #include "core/fxge/include/fx_ge_apple.h" |
18 | 18 |
19 void CFX_AggDeviceDriver::InitPlatform() { | 19 void CFX_AggDeviceDriver::InitPlatform() { |
20 CQuartz2D& quartz2d = | 20 CQuartz2D& quartz2d = |
21 static_cast<CApplePlatform*>(CFX_GEModule::Get()->GetPlatformData()) | 21 static_cast<CApplePlatform*>(CFX_GEModule::Get()->GetPlatformData()) |
22 ->m_quartz2d; | 22 ->m_quartz2d; |
23 m_pPlatformGraphics = quartz2d.createGraphics(m_pBitmap); | 23 m_pPlatformGraphics = quartz2d.createGraphics(m_pBitmap); |
24 } | 24 } |
25 void CFX_AggDeviceDriver::DestroyPlatform() { | 25 void CFX_AggDeviceDriver::DestroyPlatform() { |
26 CQuartz2D& quartz2d = | 26 CQuartz2D& quartz2d = |
27 static_cast<CApplePlatform*>(CFX_GEModule::Get()->GetPlatformData()) | 27 static_cast<CApplePlatform*>(CFX_GEModule::Get()->GetPlatformData()) |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 if (m_pPlatformFont) { | 168 if (m_pPlatformFont) { |
169 CQuartz2D& quartz2d = | 169 CQuartz2D& quartz2d = |
170 static_cast<CApplePlatform*>(CFX_GEModule::Get()->GetPlatformData()) | 170 static_cast<CApplePlatform*>(CFX_GEModule::Get()->GetPlatformData()) |
171 ->m_quartz2d; | 171 ->m_quartz2d; |
172 quartz2d.DestroyFont(m_pPlatformFont); | 172 quartz2d.DestroyFont(m_pPlatformFont); |
173 m_pPlatformFont = NULL; | 173 m_pPlatformFont = NULL; |
174 } | 174 } |
175 } | 175 } |
176 | 176 |
177 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_ | 177 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_ |
OLD | NEW |