aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/SkAAClip.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/SkAAClip.cpp b/src/core/SkAAClip.cpp
index 05742487b8..86d9ae7b08 100644
--- a/src/core/SkAAClip.cpp
+++ b/src/core/SkAAClip.cpp
@@ -209,7 +209,7 @@ void SkAAClip::validate() const {
prevOffset = yoff->fOffset;
const uint8_t* row = head->data() + yoff->fOffset;
size_t rowLength = compute_row_length(row, fBounds.width());
- SkASSERT(yoff->fOffset + rowLength <= head->fDataSize);
+ SkASSERT(yoff->fOffset + rowLength <= (size_t) head->fDataSize);
yoff += 1;
}
// check the last entry;
@@ -898,7 +898,7 @@ public:
size_t n = row->fData->count();
memcpy(data, row->fData->begin(), n);
#ifdef SK_DEBUG
- int bytesNeeded = compute_row_length(data, fBounds.width());
+ size_t bytesNeeded = compute_row_length(data, fBounds.width());
SkASSERT(bytesNeeded == n);
#endif
data += n;