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