| Index: core/include/fxge/fx_ge.h
|
| diff --git a/core/include/fxge/fx_ge.h b/core/include/fxge/fx_ge.h
|
| index 60374eff45b68c1a2f74dcdd962b5872a522ff39..a880166c39dcf950cb324d953c2ce5ca972b9e7d 100644
|
| --- a/core/include/fxge/fx_ge.h
|
| +++ b/core/include/fxge/fx_ge.h
|
| @@ -65,7 +65,7 @@ protected:
|
| void InitPlatform();
|
| void DestroyPlatform();
|
| private:
|
| - FX_BYTE m_GammaValue[256];
|
| + uint8_t m_GammaValue[256];
|
| CFX_FontCache* m_pFontCache;
|
| CFX_FontMgr* m_pFontMgr;
|
| CCodec_ModuleMgr* m_pCodecModule;
|
| @@ -133,8 +133,8 @@ protected:
|
|
|
| void IntersectMaskRect(FX_RECT rect, FX_RECT mask_box, CFX_DIBitmapRef Mask);
|
| };
|
| -extern const FX_BYTE g_GammaRamp[256];
|
| -extern const FX_BYTE g_GammaInverse[256];
|
| +extern const uint8_t g_GammaRamp[256];
|
| +extern const uint8_t g_GammaInverse[256];
|
| #define FX_GAMMA(value) (value)
|
| #define FX_GAMMA_INVERSE(value) (value)
|
| inline FX_ARGB ArgbGamma(FX_ARGB argb)
|
|
|