commit | 3686c9d90a8346b346dff48c0f3082b9bcdbd604 | [log] [tgz] |
---|---|---|
author | scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Sep 25 17:36:36 2012 +0000 |
committer | scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Sep 25 17:36:36 2012 +0000 |
tree | 183feb33a785137129e61c7efad056675030b6bd | |
parent | 33535f3c48bf723c46f334a93d4a06d782dad30e [diff] [blame] |
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
diff --git a/tools/PictureBenchmark.cpp b/tools/PictureBenchmark.cpp index 0b4f56e..fbf1585 100644 --- a/tools/PictureBenchmark.cpp +++ b/tools/PictureBenchmark.cpp
@@ -85,7 +85,7 @@ fRenderer->setup(); timer->start(); - fRenderer->render(false); + fRenderer->render(NULL); timer->truncatedEnd(); // Finishes gl context