summaryrefslogtreecommitdiff
path: root/rsFont.h
diff options
context:
space:
mode:
authorAlex Sakhartchouk <alexst@google.com>2010-12-17 11:41:08 -0800
committerAlex Sakhartchouk <alexst@google.com>2010-12-17 11:41:08 -0800
commitc17ace2391783dcabc6c1482edf0362654fd83e5 (patch)
treecee3fa9832b4b436b3e02b35a7522675ad80a0c4 /rsFont.h
parentff8ce9cd935cd03ec8a7c564b7cf06783c8f8c73 (diff)
downloadrs-c17ace2391783dcabc6c1482edf0362654fd83e5.tar.gz
API reaview cleanup
Change-Id: Ib1aaf81130ffa6b5e6c60096c27c969e8891db3f
Diffstat (limited to 'rsFont.h')
-rw-r--r--rsFont.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/rsFont.h b/rsFont.h
index 0f6815d2..c24c9f18 100644
--- a/rsFont.h
+++ b/rsFont.h
@@ -73,7 +73,7 @@ public:
return RS_A3D_CLASS_ID_UNKNOWN;
}
- static Font * create(Context *rsc, const char *name, uint32_t fontSize, uint32_t dpi);
+ static Font * create(Context *rsc, const char *name, float fontSize, uint32_t dpi);
protected:
@@ -112,11 +112,11 @@ protected:
};
String8 mFontName;
- uint32_t mFontSize;
+ float mFontSize;
uint32_t mDpi;
Font(Context *rsc);
- bool init(const char *name, uint32_t fontSize, uint32_t dpi);
+ bool init(const char *name, float fontSize, uint32_t dpi);
FT_Face mFace;
bool mInitialized;