OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "CrashHandler.h" | 8 #include "CrashHandler.h" |
9 #include "DMJsonWriter.h" | 9 #include "DMJsonWriter.h" |
10 #include "DMSrcSink.h" | 10 #include "DMSrcSink.h" |
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 contextOptions = static_cast<GrContextFactory::GLContextOptions>
( | 718 contextOptions = static_cast<GrContextFactory::GLContextOptions>
( |
719 contextOptions | GrContextFactory::kEnableNVPR_GLContextOpti
ons); | 719 contextOptions | GrContextFactory::kEnableNVPR_GLContextOpti
ons); |
720 } | 720 } |
721 GrContextFactory testFactory; | 721 GrContextFactory testFactory; |
722 if (!testFactory.get(contextType, contextOptions)) { | 722 if (!testFactory.get(contextType, contextOptions)) { |
723 SkDebugf("WARNING: can not create GPU context for config '%s'. " | 723 SkDebugf("WARNING: can not create GPU context for config '%s'. " |
724 "GM tests will be skipped.\n", gpuConfig->getTag().c_st
r()); | 724 "GM tests will be skipped.\n", gpuConfig->getTag().c_st
r()); |
725 return nullptr; | 725 return nullptr; |
726 } | 726 } |
727 return new GPUSink(contextType, contextOptions, gpuConfig->getSample
s(), | 727 return new GPUSink(contextType, contextOptions, gpuConfig->getSample
s(), |
728 gpuConfig->getUseDIText(), FLAGS_gpu_threading); | 728 gpuConfig->getUseDIText(), gpuConfig->getColorTyp
e(), |
| 729 gpuConfig->getProfileType(), FLAGS_gpu_threading)
; |
729 } | 730 } |
730 } | 731 } |
731 #endif | 732 #endif |
732 | 733 |
733 #define SINK(t, sink, ...) if (config->getBackend().equals(t)) { return new sink
(__VA_ARGS__); } | 734 #define SINK(t, sink, ...) if (config->getBackend().equals(t)) { return new sink
(__VA_ARGS__); } |
734 | 735 |
735 #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK | 736 #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK |
736 SINK("hwui", HWUISink); | 737 SINK("hwui", HWUISink); |
737 #endif | 738 #endif |
738 | 739 |
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1373 Reporter* reporter, | 1374 Reporter* reporter, |
1374 GrContextFactory* fac
tory); | 1375 GrContextFactory* fac
tory); |
1375 } // namespace skiatest | 1376 } // namespace skiatest |
1376 | 1377 |
1377 #if !defined(SK_BUILD_FOR_IOS) | 1378 #if !defined(SK_BUILD_FOR_IOS) |
1378 int main(int argc, char** argv) { | 1379 int main(int argc, char** argv) { |
1379 SkCommandLineFlags::Parse(argc, argv); | 1380 SkCommandLineFlags::Parse(argc, argv); |
1380 return dm_main(); | 1381 return dm_main(); |
1381 } | 1382 } |
1382 #endif | 1383 #endif |
OLD | NEW |