aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkTextBlob.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/core/SkTextBlob.h')
-rw-r--r--include/core/SkTextBlob.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/core/SkTextBlob.h b/include/core/SkTextBlob.h
index f3cde25482..e15bf918a8 100644
--- a/include/core/SkTextBlob.h
+++ b/include/core/SkTextBlob.h
@@ -185,9 +185,9 @@ public:
SkScalar y,
int textByteCount,
SkString lang,
- const SkRect* bounds = NULL);
+ const SkRect* bounds = nullptr);
const RunBuffer& allocRun(const SkPaint& font, int count, SkScalar x, SkScalar y,
- const SkRect* bounds = NULL) {
+ const SkRect* bounds = nullptr) {
return this->allocRunText(font, count, x, y, 0, SkString(), bounds);
}
@@ -210,9 +210,9 @@ public:
*/
const RunBuffer& allocRunTextPosH(const SkPaint& font, int count, SkScalar y,
int textByteCount, SkString lang,
- const SkRect* bounds = NULL);
+ const SkRect* bounds = nullptr);
const RunBuffer& allocRunPosH(const SkPaint& font, int count, SkScalar y,
- const SkRect* bounds = NULL) {
+ const SkRect* bounds = nullptr) {
return this->allocRunTextPosH(font, count, y, 0, SkString(), bounds);
}
@@ -235,9 +235,9 @@ public:
*/
const RunBuffer& allocRunTextPos(const SkPaint& font, int count,
int textByteCount, SkString lang,
- const SkRect* bounds = NULL);
+ const SkRect* bounds = nullptr);
const RunBuffer& allocRunPos(const SkPaint& font, int count,
- const SkRect* bounds = NULL) {
+ const SkRect* bounds = nullptr) {
return this->allocRunTextPos(font, count, 0, SkString(), bounds);
}