| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 "gm.h" | 8 #include "gm.h" |
| 9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkGradientShader.h" | 10 #include "SkGradientShader.h" |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 virtual uint32_t onGetFlags() const { | 102 virtual uint32_t onGetFlags() const { |
| 103 #ifdef SK_BUILD_FOR_WIN32 | 103 #ifdef SK_BUILD_FOR_WIN32 |
| 104 // The Windows bot runs out of memory in replay modes on this test in 32
bit builds: | 104 // The Windows bot runs out of memory in replay modes on this test in 32
bit builds: |
| 105 // http://skbug.com/1756 | 105 // http://skbug.com/1756 |
| 106 return kSkipPicture_Flag | | 106 return kSkipPicture_Flag | |
| 107 kSkipPipe_Flag | | 107 kSkipPipe_Flag | |
| 108 kSkipPipeCrossProcess_Flag | | 108 kSkipPipeCrossProcess_Flag | |
| 109 kSkipTiled_Flag | | 109 kSkipTiled_Flag | |
| 110 kSkipScaledReplay_Flag; | 110 kSkipScaledReplay_Flag; |
| 111 #else | 111 #else |
| 112 return 0; | 112 return kSkipTiled_Flag; |
| 113 #endif | 113 #endif |
| 114 } | 114 } |
| 115 | 115 |
| 116 private: | 116 private: |
| 117 typedef skiagm::GM INHERITED; | 117 typedef skiagm::GM INHERITED; |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 ////////////////////////////////////////////////////////////////////////////// | 120 ////////////////////////////////////////////////////////////////////////////// |
| 121 | 121 |
| 122 static skiagm::GM* MyFactory(void*) { return new VeryLargeBitmapGM; } | 122 static skiagm::GM* MyFactory(void*) { return new VeryLargeBitmapGM; } |
| 123 static skiagm::GMRegistry reg(MyFactory); | 123 static skiagm::GMRegistry reg(MyFactory); |
| OLD | NEW |