aboutsummaryrefslogtreecommitdiffstats
path: root/tests/SkpSkGrTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/SkpSkGrTest.cpp')
-rw-r--r--tests/SkpSkGrTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/SkpSkGrTest.cpp b/tests/SkpSkGrTest.cpp
index 23cd30c0c1..98c54e032c 100644
--- a/tests/SkpSkGrTest.cpp
+++ b/tests/SkpSkGrTest.cpp
@@ -382,7 +382,7 @@ static void writePict(const SkBitmap& bitmap, const char* outDir, const char* pn
}
void TestResult::testOne() {
- SkPicture* pic = NULL;
+ SkPicture* pic = nullptr;
{
SkString d;
d.printf(" {%d, \"%s\"},", fDirNo, fFilename);
@@ -417,7 +417,7 @@ void TestResult::testOne() {
#else
GrContext* context = contextFactory.get(kNative);
#endif
- if (NULL == context) {
+ if (nullptr == context) {
SkDebugf("unable to allocate context for %s\n", fFilename);
goto finish;
}
@@ -450,7 +450,7 @@ void TestResult::testOne() {
desc.fWidth = dim.fX;
desc.fHeight = dim.fY;
desc.fSampleCnt = 0;
- SkAutoTUnref<GrTexture> texture(context->createUncachedTexture(desc, NULL, 0));
+ SkAutoTUnref<GrTexture> texture(context->createUncachedTexture(desc, nullptr, 0));
if (!texture) {
SkDebugf("unable to allocate texture for %s (w=%d h=%d)\n", fFilename,
dim.fX, dim.fY);