aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils/SkPatchUtils.cpp
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-08-27 07:41:13 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-27 07:41:16 -0700
commit96fcdcc219d2a0d3579719b84b28bede76efba64 (patch)
tree0ec5ea0193d8292df8bf5ed9dd8498a5eb5763dd /src/utils/SkPatchUtils.cpp
parent435af2f736c85c3274a0c6760a3523810750d237 (diff)
Style Change: NULL->nullptr
Diffstat (limited to 'src/utils/SkPatchUtils.cpp')
-rw-r--r--src/utils/SkPatchUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/SkPatchUtils.cpp b/src/utils/SkPatchUtils.cpp
index e9ff906dd2..ad846f7ba2 100644
--- a/src/utils/SkPatchUtils.cpp
+++ b/src/utils/SkPatchUtils.cpp
@@ -191,7 +191,7 @@ void SkPatchUtils::getRightCubic(const SkPoint cubics[12], SkPoint points[4]) {
bool SkPatchUtils::getVertexData(SkPatchUtils::VertexData* data, const SkPoint cubics[12],
const SkColor colors[4], const SkPoint texCoords[4], int lodX, int lodY) {
- if (lodX < 1 || lodY < 1 || NULL == cubics || NULL == data) {
+ if (lodX < 1 || lodY < 1 || nullptr == cubics || nullptr == data) {
return false;
}