Index: core/src/fxge/agg/include/fx_agg_driver.h |
diff --git a/core/src/fxge/agg/include/fx_agg_driver.h b/core/src/fxge/agg/include/fx_agg_driver.h |
index 29b56c77e43d5a54892e3443aec6c7c55d60cbc0..c8d620122e65f3638ffc74a0e058d1cb4f3134d8 100644 |
--- a/core/src/fxge/agg/include/fx_agg_driver.h |
+++ b/core/src/fxge/agg/include/fx_agg_driver.h |
@@ -22,7 +22,7 @@ public: |
class CFX_AggDeviceDriver : public IFX_RenderDeviceDriver |
{ |
public: |
- CFX_AggDeviceDriver(CFX_DIBitmap* pBitmap, int dither_bits, FX_BOOL bRgbByteOrder, CFX_DIBitmap* pOriDevice, FX_BOOL bGroupKnockout); |
+ CFX_AggDeviceDriver(CFX_DIBitmap* pBitmap, int dither_bits, bool bRgbByteOrder, CFX_DIBitmap* pOriDevice, bool bGroupKnockout); |
virtual ~CFX_AggDeviceDriver(); |
void InitPlatform(); |
void DestroyPlatform(); |
@@ -32,22 +32,22 @@ public: |
virtual void SaveState(); |
- virtual void RestoreState(FX_BOOL bKeepSaved); |
+ virtual void RestoreState(bool bKeepSaved); |
- virtual FX_BOOL SetClip_PathFill(const CFX_PathData* pPathData, |
+ virtual bool SetClip_PathFill(const CFX_PathData* pPathData, |
const CFX_AffineMatrix* pObject2Device, |
int fill_mode |
); |
- virtual FX_BOOL SetClip_PathStroke(const CFX_PathData* pPathData, |
+ virtual bool SetClip_PathStroke(const CFX_PathData* pPathData, |
const CFX_AffineMatrix* pObject2Device, |
const CFX_GraphStateData* pGraphState |
); |
- virtual FX_BOOL DrawPath(const CFX_PathData* pPathData, |
+ virtual bool DrawPath(const CFX_PathData* pPathData, |
const CFX_AffineMatrix* pObject2Device, |
const CFX_GraphStateData* pGraphState, |
FX_DWORD fill_color, |
@@ -58,44 +58,44 @@ public: |
int blend_type |
); |
- virtual FX_BOOL SetPixel(int x, int y, FX_DWORD color, |
+ virtual bool SetPixel(int x, int y, FX_DWORD color, |
int alpha_flag, void* pIccTransform); |
- virtual FX_BOOL FillRect(const FX_RECT* pRect, |
+ virtual bool FillRect(const FX_RECT* pRect, |
FX_DWORD fill_color, int alpha_flag, void* pIccTransform, int blend_type); |
- virtual FX_BOOL DrawCosmeticLine(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_DWORD color, |
+ virtual bool DrawCosmeticLine(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, FX_DWORD color, |
int alpha_flag, void* pIccTransform, int blend_type) |
{ |
- return FALSE; |
+ return false; |
} |
- virtual FX_BOOL GetClipBox(FX_RECT* pRect); |
+ virtual bool GetClipBox(FX_RECT* pRect); |
- virtual FX_BOOL GetDIBits(CFX_DIBitmap* pBitmap, int left, int top, void* pIccTransform = NULL, FX_BOOL bDEdge = FALSE); |
+ virtual bool GetDIBits(CFX_DIBitmap* pBitmap, int left, int top, void* pIccTransform = NULL, bool bDEdge = false); |
virtual CFX_DIBitmap* GetBackDrop() |
{ |
return m_pOriDevice; |
} |
- virtual FX_BOOL SetDIBits(const CFX_DIBSource* pBitmap, FX_DWORD color, const FX_RECT* pSrcRect, int left, int top, int blend_type, |
+ virtual bool SetDIBits(const CFX_DIBSource* pBitmap, FX_DWORD color, const FX_RECT* pSrcRect, int left, int top, int blend_type, |
int alpha_flag, void* pIccTransform); |
- virtual FX_BOOL StretchDIBits(const CFX_DIBSource* pBitmap, FX_DWORD color, int dest_left, int dest_top, |
+ virtual bool StretchDIBits(const CFX_DIBSource* pBitmap, FX_DWORD color, int dest_left, int dest_top, |
int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags, |
int alpha_flag, void* pIccTransform, int blend_type); |
- virtual FX_BOOL StartDIBits(const CFX_DIBSource* pBitmap, int bitmap_alpha, FX_DWORD color, |
+ virtual bool StartDIBits(const CFX_DIBSource* pBitmap, int bitmap_alpha, FX_DWORD color, |
const CFX_AffineMatrix* pMatrix, FX_DWORD flags, void*& handle, |
int alpha_flag, void* pIccTransform, int blend_type); |
- virtual FX_BOOL ContinueDIBits(void* handle, IFX_Pause* pPause); |
+ virtual bool ContinueDIBits(void* handle, IFX_Pause* pPause); |
virtual void CancelDIBits(void* handle); |
- virtual FX_BOOL DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, |
+ virtual bool DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, |
CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD color, |
int alpha_flag, void* pIccTransform); |
- virtual FX_BOOL RenderRasterizer(FX_NAMESPACE_DECLARE(agg, rasterizer_scanline_aa)& rasterizer, FX_DWORD color, FX_BOOL bFullCover, FX_BOOL bGroupKnockout, |
+ virtual bool RenderRasterizer(FX_NAMESPACE_DECLARE(agg, rasterizer_scanline_aa)& rasterizer, FX_DWORD color, bool bFullCover, bool bGroupKnockout, |
int alpha_flag, void* pIccTransform); |
void SetClipMask(FX_NAMESPACE_DECLARE(agg, rasterizer_scanline_aa)& rasterizer); |
@@ -117,9 +117,9 @@ public: |
void* m_pDwRenderTartget; |
int m_FillFlags; |
int m_DitherBits; |
- FX_BOOL m_bRgbByteOrder; |
+ bool m_bRgbByteOrder; |
CFX_DIBitmap* m_pOriDevice; |
- FX_BOOL m_bGroupKnockout; |
+ bool m_bGroupKnockout; |
}; |
#endif // FX_AGG_DRIVER_H_ |