aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkAAClip.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/core/SkAAClip.cpp
parent435af2f736c85c3274a0c6760a3523810750d237 (diff)
Style Change: NULL->nullptr
Diffstat (limited to 'src/core/SkAAClip.cpp')
-rw-r--r--src/core/SkAAClip.cpp48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/core/SkAAClip.cpp b/src/core/SkAAClip.cpp
index 902b87a6c7..bbd1f555f0 100644
--- a/src/core/SkAAClip.cpp
+++ b/src/core/SkAAClip.cpp
@@ -136,9 +136,9 @@ SkAAClip::Iter::Iter(const SkAAClip& clip) {
if (clip.isEmpty()) {
fDone = true;
fTop = fBottom = clip.fBounds.fBottom;
- fData = NULL;
- fCurrYOff = NULL;
- fStopYOff = NULL;
+ fData = nullptr;
+ fCurrYOff = nullptr;
+ fStopYOff = nullptr;
return;
}
@@ -163,7 +163,7 @@ void SkAAClip::Iter::next() {
if (curr >= fStopYOff) {
fDone = true;
fBottom = kMaxInt32;
- fData = NULL;
+ fData = nullptr;
} else {
fBottom += curr->fY - prev->fY;
fData += curr->fOffset - prev->fOffset;
@@ -188,7 +188,7 @@ static size_t compute_row_length(const uint8_t row[], int width) {
}
void SkAAClip::validate() const {
- if (NULL == fRunHead) {
+ if (nullptr == fRunHead) {
SkASSERT(fBounds.isEmpty());
return;
}
@@ -625,12 +625,12 @@ void SkAAClip::freeRuns() {
SkAAClip::SkAAClip() {
fBounds.setEmpty();
- fRunHead = NULL;
+ fRunHead = nullptr;
}
SkAAClip::SkAAClip(const SkAAClip& src) {
SkDEBUGCODE(fBounds.setEmpty();) // need this for validate
- fRunHead = NULL;
+ fRunHead = nullptr;
*this = src;
}
@@ -698,7 +698,7 @@ bool SkAAClip::set(const SkAAClip& src) {
bool SkAAClip::setEmpty() {
this->freeRuns();
fBounds.setEmpty();
- fRunHead = NULL;
+ fRunHead = nullptr;
return false;
}
@@ -763,7 +763,7 @@ bool SkAAClip::setRect(const SkRect& r, bool doAA) {
SkPath path;
path.addRect(r);
- return this->setPath(path, NULL, doAA);
+ return this->setPath(path, nullptr, doAA);
}
static void append_run(SkTDArray<uint8_t>& array, uint8_t value, int count) {
@@ -810,7 +810,7 @@ bool SkAAClip::setRegion(const SkRegion& rgn) {
SkRegion::Iterator iter(rgn);
int prevRight = 0;
int prevBot = 0;
- YOffset* currY = NULL;
+ YOffset* currY = nullptr;
for (; !iter.done(); iter.next()) {
const SkIRect& r = iter.rect();
@@ -869,7 +869,7 @@ const uint8_t* SkAAClip::findRow(int y, int* lastYForRow) const {
SkASSERT(fRunHead);
if (!y_in_rect(y, fBounds)) {
- return NULL;
+ return nullptr;
}
y -= fBounds.y(); // our yoffs values are relative to the top
@@ -960,7 +960,7 @@ public:
Builder(const SkIRect& bounds) : fBounds(bounds) {
fPrevY = -1;
fWidth = bounds.width();
- fCurrRow = NULL;
+ fCurrRow = nullptr;
fMinY = bounds.fTop;
}
@@ -1181,7 +1181,7 @@ private:
}
Row* flushRow(bool readyForAnother) {
- Row* next = NULL;
+ Row* next = nullptr;
int count = fRows.count();
if (count > 0) {
this->flushRowH(&fRows[count - 1]);
@@ -1298,7 +1298,7 @@ public:
{ unexpected(); }
const SkPixmap* justAnOpaqueColor(uint32_t*) override {
- return NULL;
+ return nullptr;
}
void blitH(int x, int y, int width) override {
@@ -1381,7 +1381,7 @@ bool SkAAClip::setPath(const SkPath& path, const SkRegion* clip, bool doAA) {
path.getBounds().roundOut(&ibounds);
SkRegion tmpClip;
- if (NULL == clip) {
+ if (nullptr == clip) {
tmpClip.setRect(ibounds);
clip = &tmpClip;
}
@@ -1608,8 +1608,8 @@ static void operateY(SkAAClip::Builder& builder, const SkAAClip& A,
int botB = iterB.bottom();
do {
- const uint8_t* rowA = NULL;
- const uint8_t* rowB = NULL;
+ const uint8_t* rowA = nullptr;
+ const uint8_t* rowB = nullptr;
int top, bot;
if (topA < topB) {
@@ -1803,7 +1803,7 @@ bool SkAAClip::op(const SkAAClip& clip, SkRegion::Op op) {
///////////////////////////////////////////////////////////////////////////////
bool SkAAClip::translate(int dx, int dy, SkAAClip* dst) const {
- if (NULL == dst) {
+ if (nullptr == dst) {
return !this->isEmpty();
}
@@ -1839,7 +1839,7 @@ void SkAAClip::copyToMask(SkMask* mask) const {
mask->fFormat = SkMask::kA8_Format;
if (this->isEmpty()) {
mask->fBounds.setEmpty();
- mask->fImage = NULL;
+ mask->fImage = nullptr;
mask->fRowBytes = 0;
return;
}
@@ -1898,7 +1898,7 @@ SkAAClipBlitter::~SkAAClipBlitter() {
}
void SkAAClipBlitter::ensureRunsAndAA() {
- if (NULL == fScanlineScratch) {
+ if (nullptr == fScanlineScratch) {
// add 1 so we can store the terminating run count of 0
int count = fAAClipBounds.width() + 1;
// we use this either for fRuns + fAA, or a scaline of a mask
@@ -2092,7 +2092,7 @@ static MergeAAProc find_merge_aa_proc(SkMask::Format format) {
switch (format) {
case SkMask::kBW_Format:
SkDEBUGFAIL("unsupported");
- return NULL;
+ return nullptr;
case SkMask::kA8_Format:
case SkMask::k3D_Format: {
void (*proc8)(const uint8_t*, int, const uint8_t*, int, uint8_t*) = mergeT;
@@ -2104,7 +2104,7 @@ static MergeAAProc find_merge_aa_proc(SkMask::Format format) {
}
default:
SkDEBUGFAIL("unsupported");
- return NULL;
+ return nullptr;
}
}
@@ -2168,7 +2168,7 @@ void SkAAClipBlitter::blitMask(const SkMask& origMask, const SkIRect& clip) {
// if we're BW, we need to upscale to A8 (ugh)
SkMask grayMask;
- grayMask.fImage = NULL;
+ grayMask.fImage = nullptr;
if (SkMask::kBW_Format == origMask.fFormat) {
grayMask.fFormat = SkMask::kA8_Format;
grayMask.fBounds = origMask.fBounds;
@@ -2220,5 +2220,5 @@ void SkAAClipBlitter::blitMask(const SkMask& origMask, const SkIRect& clip) {
}
const SkPixmap* SkAAClipBlitter::justAnOpaqueColor(uint32_t* value) {
- return NULL;
+ return nullptr;
}