OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 "SkColorPriv.h" | 10 #include "SkColorPriv.h" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 fMode = mode; | 64 fMode = mode; |
65 fDoFilter = doFilter; | 65 fDoFilter = doFilter; |
66 fDoRotate = doRotate; | 66 fDoRotate = doRotate; |
67 } | 67 } |
68 | 68 |
69 virtual ~GiantBitmapGM() { | 69 virtual ~GiantBitmapGM() { |
70 SkDELETE(fBM); | 70 SkDELETE(fBM); |
71 } | 71 } |
72 | 72 |
73 protected: | 73 protected: |
74 uint32_t onGetFlags() const SK_OVERRIDE { | |
75 #ifdef SK_BUILD_FOR_ANDROID | |
76 return kSkipTiled_Flag; | |
77 #else | |
78 if (fDoFilter && fDoRotate && fMode != SkShader::kClamp_TileMode) { | |
79 return kSkipTiled_Flag; | |
80 } | |
81 return 0; | |
82 #endif | |
83 } | |
84 | 74 |
85 SkString onShortName() SK_OVERRIDE { | 75 SkString onShortName() SK_OVERRIDE { |
86 SkString str("giantbitmap_"); | 76 SkString str("giantbitmap_"); |
87 switch (fMode) { | 77 switch (fMode) { |
88 case SkShader::kClamp_TileMode: | 78 case SkShader::kClamp_TileMode: |
89 str.append("clamp"); | 79 str.append("clamp"); |
90 break; | 80 break; |
91 case SkShader::kRepeat_TileMode: | 81 case SkShader::kRepeat_TileMode: |
92 str.append("repeat"); | 82 str.append("repeat"); |
93 break; | 83 break; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 static skiagm::GMRegistry reg010(G010); | 144 static skiagm::GMRegistry reg010(G010); |
155 static skiagm::GMRegistry reg110(G110); | 145 static skiagm::GMRegistry reg110(G110); |
156 static skiagm::GMRegistry reg210(G210); | 146 static skiagm::GMRegistry reg210(G210); |
157 | 147 |
158 static skiagm::GMRegistry reg001(G001); | 148 static skiagm::GMRegistry reg001(G001); |
159 static skiagm::GMRegistry reg101(G101); | 149 static skiagm::GMRegistry reg101(G101); |
160 static skiagm::GMRegistry reg201(G201); | 150 static skiagm::GMRegistry reg201(G201); |
161 static skiagm::GMRegistry reg011(G011); | 151 static skiagm::GMRegistry reg011(G011); |
162 static skiagm::GMRegistry reg111(G111); | 152 static skiagm::GMRegistry reg111(G111); |
163 static skiagm::GMRegistry reg211(G211); | 153 static skiagm::GMRegistry reg211(G211); |
OLD | NEW |