Index: dm/DMGpuTask.cpp |
diff --git a/dm/DMGpuTask.cpp b/dm/DMGpuTask.cpp |
index 6cf69ffc1c9c2b8a550ae39ad8260b99606f92e8..a002b959d7a04943309eb18209167bde74089a6b 100644 |
--- a/dm/DMGpuTask.cpp |
+++ b/dm/DMGpuTask.cpp |
@@ -2,6 +2,7 @@ |
#include "DMComparisonTask.h" |
#include "DMUtil.h" |
+#include "DMWriteTask.h" |
#include "SkCommandLineFlags.h" |
#include "SkGpuDevice.h" |
#include "SkTLS.h" |
@@ -58,6 +59,7 @@ void GpuTask::draw() { |
// We offload checksum comparison to the main CPU threadpool. |
// This cuts run time by about 30%. |
this->spawnChild(SkNEW_ARGS(ComparisonTask, (*this, fExpectations, bitmap))); |
+ this->spawnChild(SkNEW_ARGS(WriteTask, (*this, bitmap))); |
} |
bool GpuTask::shouldSkip() const { |