Index: core/src/fxge/skia/fx_skia_blitter_new.h |
diff --git a/core/src/fxge/skia/fx_skia_blitter_new.h b/core/src/fxge/skia/fx_skia_blitter_new.h |
index e60c6398d2b9932cd7111c4f721c1030ce9c18d3..cd411da9f5efef313009fd5fe386cbab3c1bd408 100644 |
--- a/core/src/fxge/skia/fx_skia_blitter_new.h |
+++ b/core/src/fxge/skia/fx_skia_blitter_new.h |
@@ -15,9 +15,9 @@ protected: |
m_Blue, // Yellow |
m_Gray; // Black |
FX_DWORD m_Color; // FX_ARGB or FX_CMYK |
- FX_BOOL m_bFullCover; |
+ bool m_bFullCover; |
int m_ProcessFilter; |
- FX_BOOL m_bRgbByteOrder; |
+ bool m_bRgbByteOrder; |
FX_RECT m_ClipBox; |
CFX_DIBitmap* m_pDevice; |
@@ -205,7 +205,7 @@ public: |
//-------------------------------------------------------------------- |
- FX_BOOL Init(CFX_DIBitmap* pDevice, CFX_DIBitmap* pOriDevice, const CFX_ClipRgn* pClipRgn, FX_DWORD color, FX_BOOL bFullCover, FX_BOOL bRgbByteOrder, |
+ bool Init(CFX_DIBitmap* pDevice, CFX_DIBitmap* pOriDevice, const CFX_ClipRgn* pClipRgn, FX_DWORD color, bool bFullCover, bool bRgbByteOrder, |
int alpha_flag = 0, void* pIccTransform = NULL); //The alpha flag must be fill_flag if exist. |
}; |
class CFX_SkiaA8Renderer : public SkBlitter |
@@ -218,7 +218,7 @@ public: |
virtual void blitRect(int x, int y, int width, int height); |
virtual void blitAntiRect(int x, int y, int width, int height, SkAlpha leftAlpha, SkAlpha rightAlpha); |
//-------------------------------------------------------------------- |
- FX_BOOL Init(CFX_DIBitmap* pDevice, int Left, int Top); |
+ bool Init(CFX_DIBitmap* pDevice, int Left, int Top); |
CFX_DIBitmap* m_pDevice; |
int m_Left; |
int m_Top; |