From 02000b3cdcb2ac369bd06313932b26d4b8e023a9 Mon Sep 17 00:00:00 2001 From: Alex Sakhartchouk Date: Fri, 25 Feb 2011 09:34:33 -0800 Subject: Moving dependency includes out of librs headers. When we want to use it on the host, we shouldn't need to go hunting for every external dependency Change-Id: I885262acdcdf5ede4a9392235f35d5e2f7038e8b --- rsFont.h | 38 +++++++++++++------------------------- 1 file changed, 13 insertions(+), 25 deletions(-) (limited to 'rsFont.h') diff --git a/rsFont.h b/rsFont.h index 48209992..91a5da90 100644 --- a/rsFont.h +++ b/rsFont.h @@ -23,8 +23,9 @@ #include #include -#include -#include FT_FREETYPE_H +struct FT_LibraryRec_; +struct FT_FaceRec_; +struct FT_Bitmap_; // --------------------------------------------------------------------------- namespace android { @@ -105,11 +106,12 @@ protected: float mBitmapMaxU; float mBitmapMaxV; // Minimize how much we call freetype - FT_UInt mGlyphIndex; - FT_Vector mAdvance; + int32_t mGlyphIndex; + int32_t mAdvanceX; + int32_t mAdvanceY; // Values below contain a glyph's origin in the bitmap - FT_Int mBitmapLeft; - FT_Int mBitmapTop; + int32_t mBitmapLeft; + int32_t mBitmapTop; }; String8 mFontName; @@ -120,7 +122,7 @@ protected: bool init(const char *name, float fontSize, uint32_t dpi, const void *data = NULL, uint32_t dataLen = 0); virtual void preDestroy() const; - FT_Face mFace; + FT_FaceRec_ *mFace; bool mInitialized; bool mHasKerning; @@ -173,21 +175,7 @@ protected: mCurrentCol(currentCol), mDirty(false) { } - bool fitBitmap(FT_Bitmap *bitmap, uint32_t *retOriginX, uint32_t *retOriginY) { - if ((uint32_t)bitmap->rows > mMaxHeight) { - return false; - } - - if (mCurrentCol + (uint32_t)bitmap->width < mMaxWidth) { - *retOriginX = mCurrentCol; - *retOriginY = mCurrentRow; - mCurrentCol += bitmap->width; - mDirty = true; - return true; - } - - return false; - } + bool fitBitmap(FT_Bitmap_ *bitmap, uint32_t *retOriginX, uint32_t *retOriginY); }; Vector mCacheLines; @@ -211,8 +199,8 @@ protected: float mWhiteThreshold; // Free type library, we only need one copy - FT_Library mLibrary; - FT_Library getLib(); + FT_LibraryRec_ *mLibrary; + FT_LibraryRec_ *getLib(); Vector mActiveFonts; // Render state for the font @@ -229,7 +217,7 @@ protected: return (uint8_t*)mTextTexture->getPtr(); } - bool cacheBitmap(FT_Bitmap *bitmap, uint32_t *retOriginX, uint32_t *retOriginY); + bool cacheBitmap(FT_Bitmap_ *bitmap, uint32_t *retOriginX, uint32_t *retOriginY); const Type* getCacheTextureType() { return mTextTexture->getType(); } -- cgit v1.2.3