| OLD | NEW |
| 1 #include "DMGpuGMTask.h" | 1 #include "DMGpuGMTask.h" |
| 2 #include "DMUtil.h" | 2 #include "DMUtil.h" |
| 3 #include "DMWriteTask.h" | 3 #include "DMWriteTask.h" |
| 4 #include "SkCommonFlags.h" | 4 #include "SkCommonFlags.h" |
| 5 #include "SkSurface.h" | 5 #include "SkSurface.h" |
| 6 #include "SkTLS.h" | 6 #include "SkTLS.h" |
| 7 | 7 |
| 8 namespace DM { | 8 namespace DM { |
| 9 | 9 |
| 10 GpuGMTask::GpuGMTask(const char* config, | 10 GpuGMTask::GpuGMTask(const char* config, |
| 11 Reporter* reporter, | 11 Reporter* reporter, |
| 12 TaskRunner* taskRunner, | 12 TaskRunner* taskRunner, |
| 13 skiagm::GMRegistry::Factory gmFactory, | 13 skiagm::GMRegistry::Factory gmFactory, |
| 14 GrContextFactory::GLContextType contextType, | 14 GrContextFactory::GLContextType contextType, |
| 15 GrGLStandard gpuAPI, | 15 GrGLStandard gpuAPI, |
| 16 int sampleCount) | 16 int sampleCount, |
| 17 bool useDFText) |
| 17 : GpuTask(reporter, taskRunner) | 18 : GpuTask(reporter, taskRunner) |
| 18 , fGM(gmFactory(NULL)) | 19 , fGM(gmFactory(NULL)) |
| 19 , fName(UnderJoin(fGM->getName(), config)) | 20 , fName(UnderJoin(fGM->getName(), config)) |
| 20 , fContextType(contextType) | 21 , fContextType(contextType) |
| 21 , fGpuAPI(gpuAPI) | 22 , fGpuAPI(gpuAPI) |
| 22 , fSampleCount(sampleCount) | 23 , fSampleCount(sampleCount) |
| 24 , fUseDFText(useDFText) |
| 23 {} | 25 {} |
| 24 | 26 |
| 25 void GpuGMTask::draw(GrContextFactory* grFactory) { | 27 void GpuGMTask::draw(GrContextFactory* grFactory) { |
| 26 SkImageInfo info = SkImageInfo::Make(SkScalarCeilToInt(fGM->width()), | 28 SkImageInfo info = SkImageInfo::Make(SkScalarCeilToInt(fGM->width()), |
| 27 SkScalarCeilToInt(fGM->height()), | 29 SkScalarCeilToInt(fGM->height()), |
| 28 kN32_SkColorType, | 30 kN32_SkColorType, |
| 29 kPremul_SkAlphaType); | 31 kPremul_SkAlphaType); |
| 30 SkAutoTUnref<SkSurface> surface(NewGpuSurface(grFactory, fContextType, fGpuA
PI, info, | 32 SkAutoTUnref<SkSurface> surface(NewGpuSurface(grFactory, fContextType, fGpuA
PI, info, |
| 31 fSampleCount)); | 33 fSampleCount, fUseDFText)); |
| 32 if (!surface) { | 34 if (!surface) { |
| 33 this->fail("Could not create context for the config and the api."); | 35 this->fail("Could not create context for the config and the api."); |
| 34 return; | 36 return; |
| 35 } | 37 } |
| 36 SkCanvas* canvas = surface->getCanvas(); | 38 SkCanvas* canvas = surface->getCanvas(); |
| 37 CanvasPreflight(canvas); | 39 CanvasPreflight(canvas); |
| 38 | 40 |
| 39 canvas->concat(fGM->getInitialTransform()); | 41 canvas->concat(fGM->getInitialTransform()); |
| 40 fGM->draw(canvas); | 42 fGM->draw(canvas); |
| 41 canvas->flush(); | 43 canvas->flush(); |
| 42 #if GR_CACHE_STATS && SK_SUPPORT_GPU | 44 #if GR_CACHE_STATS && SK_SUPPORT_GPU |
| 43 if (FLAGS_veryVerbose) { | 45 if (FLAGS_veryVerbose) { |
| 44 grFactory->get(fContextType)->printCacheStats(); | 46 grFactory->get(fContextType)->printCacheStats(); |
| 45 } | 47 } |
| 46 #endif | 48 #endif |
| 47 | 49 |
| 48 SkBitmap bitmap; | 50 SkBitmap bitmap; |
| 49 bitmap.setInfo(info); | 51 bitmap.setInfo(info); |
| 50 canvas->readPixels(&bitmap, 0, 0); | 52 canvas->readPixels(&bitmap, 0, 0); |
| 51 | 53 |
| 52 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, "GM", bitmap))); | 54 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, "GM", bitmap))); |
| 53 } | 55 } |
| 54 | 56 |
| 55 bool GpuGMTask::shouldSkip() const { | 57 bool GpuGMTask::shouldSkip() const { |
| 56 return kGPUDisabled || SkToBool(fGM->getFlags() & skiagm::GM::kSkipGPU_Flag)
; | 58 return kGPUDisabled || SkToBool(fGM->getFlags() & skiagm::GM::kSkipGPU_Flag)
; |
| 57 } | 59 } |
| 58 | 60 |
| 59 } // namespace DM | 61 } // namespace DM |
| OLD | NEW |