diff options
author | scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-09-25 17:36:36 +0000 |
---|---|---|
committer | scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-09-25 17:36:36 +0000 |
commit | 3686c9d90a8346b346dff48c0f3082b9bcdbd604 (patch) | |
tree | 183feb33a785137129e61c7efad056675030b6bd | |
parent | 33535f3c48bf723c46f334a93d4a06d782dad30e (diff) |
Fix a warning in PictureBenchmark.
Forgot to change from false to NULL. False does the right thing,
but gives a warning. Fix the warning.
Review URL: https://codereview.appspot.com/6570049
git-svn-id: http://skia.googlecode.com/svn/trunk@5666 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | tools/PictureBenchmark.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/PictureBenchmark.cpp b/tools/PictureBenchmark.cpp index 0b4f56ebe8..fbf1585d1e 100644 --- a/tools/PictureBenchmark.cpp +++ b/tools/PictureBenchmark.cpp @@ -85,7 +85,7 @@ void PictureBenchmark::run(SkPicture* pict) { fRenderer->setup(); timer->start(); - fRenderer->render(false); + fRenderer->render(NULL); timer->truncatedEnd(); // Finishes gl context |