aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkString.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/core/SkString.h')
-rw-r--r--include/core/SkString.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/core/SkString.h b/include/core/SkString.h
index 5b41a78588..ba9de02d65 100644
--- a/include/core/SkString.h
+++ b/include/core/SkString.h
@@ -44,7 +44,16 @@ char* SkStrAppendS64(char buffer[], int64_t, int minDigits);
* Thus if the caller wants to add a 0 at the end, buffer must be at least
* SkStrAppendScalar_MaxSize + 1 bytes large.
*/
-char* SkStrAppendScalar(char buffer[], SkScalar);
+#ifdef SK_SCALAR_IS_FLOAT
+ #define SkStrAppendScalar SkStrAppendFloat
+#else
+ #define SkStrAppendScalar SkStrAppendFixed
+#endif
+
+#ifdef SK_CAN_USE_FLOAT
+char* SkStrAppendFloat(char buffer[], float);
+#endif
+char* SkStrAppendFixed(char buffer[], SkFixed);
/** \class SkString