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