| 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 #ifndef CORE_FXGE_SKIA_FX_SKIA_DEVICE_H_ | 5 #ifndef CORE_FXGE_SKIA_FX_SKIA_DEVICE_H_ |
| 6 #define CORE_FXGE_SKIA_FX_SKIA_DEVICE_H_ | 6 #define CORE_FXGE_SKIA_FX_SKIA_DEVICE_H_ |
| 7 | 7 |
| 8 #if defined(_SKIA_SUPPORT_) | 8 #if defined(_SKIA_SUPPORT_) |
| 9 | 9 |
| 10 class SkCanvas; | 10 class SkCanvas; |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 FX_BOOL DrawDeviceText(int nChars, | 121 FX_BOOL DrawDeviceText(int nChars, |
| 122 const FXTEXT_CHARPOS* pCharPos, | 122 const FXTEXT_CHARPOS* pCharPos, |
| 123 CFX_Font* pFont, | 123 CFX_Font* pFont, |
| 124 CFX_FontCache* pCache, | 124 CFX_FontCache* pCache, |
| 125 const CFX_Matrix* pObject2Device, | 125 const CFX_Matrix* pObject2Device, |
| 126 FX_FLOAT font_size, | 126 FX_FLOAT font_size, |
| 127 uint32_t color, | 127 uint32_t color, |
| 128 int alpha_flag = 0, | 128 int alpha_flag = 0, |
| 129 void* pIccTransform = NULL) override; | 129 void* pIccTransform = NULL) override; |
| 130 | 130 |
| 131 FX_BOOL DrawShading(CPDF_ShadingPattern* pPattern, | 131 FX_BOOL DrawShading(const CPDF_ShadingPattern* pPattern, |
| 132 CFX_Matrix* pMatrix, | 132 const CFX_Matrix* pMatrix, |
| 133 const FX_RECT& clip_rect, |
| 133 int alpha, | 134 int alpha, |
| 134 FX_BOOL bAlphaMode) override; | 135 FX_BOOL bAlphaMode) override; |
| 135 | 136 |
| 136 virtual uint8_t* GetBuffer() const { return m_pBitmap->GetBuffer(); } | 137 virtual uint8_t* GetBuffer() const { return m_pBitmap->GetBuffer(); } |
| 137 void PaintStroke(SkPaint* spaint, | 138 void PaintStroke(SkPaint* spaint, |
| 138 const CFX_GraphStateData* pGraphState, | 139 const CFX_GraphStateData* pGraphState, |
| 139 const SkMatrix& matrix); | 140 const SkMatrix& matrix); |
| 140 SkPictureRecorder* GetRecorder() const { return m_pRecorder; } | 141 SkPictureRecorder* GetRecorder() const { return m_pRecorder; } |
| 141 | 142 |
| 142 private: | 143 private: |
| 143 CFX_DIBitmap* m_pBitmap; | 144 CFX_DIBitmap* m_pBitmap; |
| 144 CFX_DIBitmap* m_pOriDevice; | 145 CFX_DIBitmap* m_pOriDevice; |
| 145 SkCanvas* m_pCanvas; | 146 SkCanvas* m_pCanvas; |
| 146 SkPictureRecorder* const m_pRecorder; | 147 SkPictureRecorder* const m_pRecorder; |
| 147 int m_ditherBits; | 148 int m_ditherBits; |
| 148 FX_BOOL m_bRgbByteOrder; | 149 FX_BOOL m_bRgbByteOrder; |
| 149 FX_BOOL m_bGroupKnockout; | 150 FX_BOOL m_bGroupKnockout; |
| 150 }; | 151 }; |
| 151 #endif // defined(_SKIA_SUPPORT_) | 152 #endif // defined(_SKIA_SUPPORT_) |
| 152 | 153 |
| 153 #endif // CORE_FXGE_SKIA_FX_SKIA_DEVICE_H_ | 154 #endif // CORE_FXGE_SKIA_FX_SKIA_DEVICE_H_ |
| OLD | NEW |