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_ext.h" | 7 #include "core/fxcrt/include/fx_ext.h" |
8 | 8 |
9 #ifndef _SKIA_SUPPORT_ | 9 #ifndef _SKIA_SUPPORT_ |
10 #include "core/fxge/agg/fx_agg_driver.h" | 10 #include "core/fxge/agg/fx_agg_driver.h" |
(...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1016 if (m_pContext) { | 1016 if (m_pContext) { |
1017 CGContextRelease(m_pContext); | 1017 CGContextRelease(m_pContext); |
1018 } | 1018 } |
1019 m_pContext = context; | 1019 m_pContext = context; |
1020 CGContextRetain(m_pContext); | 1020 CGContextRetain(m_pContext); |
1021 IFX_RenderDeviceDriver* pDriver = | 1021 IFX_RenderDeviceDriver* pDriver = |
1022 new CFX_QuartzDeviceDriver(m_pContext, nDeviceClass); | 1022 new CFX_QuartzDeviceDriver(m_pContext, nDeviceClass); |
1023 SetDeviceDriver(pDriver); | 1023 SetDeviceDriver(pDriver); |
1024 return TRUE; | 1024 return TRUE; |
1025 } | 1025 } |
| 1026 |
1026 FX_BOOL CFX_QuartzDevice::Attach(CFX_DIBitmap* pBitmap) { | 1027 FX_BOOL CFX_QuartzDevice::Attach(CFX_DIBitmap* pBitmap) { |
1027 SetBitmap(pBitmap); | 1028 SetBitmap(pBitmap); |
1028 m_pContext = createContextWithBitmap(pBitmap); | 1029 m_pContext = createContextWithBitmap(pBitmap); |
1029 if (!m_pContext) | 1030 if (!m_pContext) |
1030 return FALSE; | 1031 return FALSE; |
1031 | 1032 |
1032 IFX_RenderDeviceDriver* pDriver = | 1033 IFX_RenderDeviceDriver* pDriver = |
1033 new CFX_QuartzDeviceDriver(m_pContext, FXDC_DISPLAY); | 1034 new CFX_QuartzDeviceDriver(m_pContext, FXDC_DISPLAY); |
1034 SetDeviceDriver(pDriver); | 1035 SetDeviceDriver(pDriver); |
1035 return TRUE; | 1036 return TRUE; |
1036 } | 1037 } |
| 1038 |
1037 FX_BOOL CFX_QuartzDevice::Create(int32_t width, | 1039 FX_BOOL CFX_QuartzDevice::Create(int32_t width, |
1038 int32_t height, | 1040 int32_t height, |
1039 FXDIB_Format format) { | 1041 FXDIB_Format format) { |
1040 if ((uint8_t)format < 32) { | 1042 if ((uint8_t)format < 32) { |
1041 return FALSE; | 1043 return FALSE; |
1042 } | 1044 } |
1043 CFX_DIBitmap* pBitmap = new CFX_DIBitmap; | 1045 std::unique_ptr<CFX_DIBitmap> pBitmap(new CFX_DIBitmap); |
1044 if (!pBitmap->Create(width, height, format)) { | 1046 if (!pBitmap->Create(width, height, format)) |
1045 delete pBitmap; | |
1046 return FALSE; | 1047 return FALSE; |
1047 } | |
1048 m_bOwnedBitmap = TRUE; | 1048 m_bOwnedBitmap = TRUE; |
1049 return Attach(pBitmap); | 1049 return Attach(pBitmap.release()); |
1050 } | 1050 } |
1051 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_ | 1051 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_ |
OLD | NEW |