Lines Matching refs:skiagm

21 class GiantBitmapGM : public skiagm::GM {
133 static skiagm::GM* G000(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, false); }
134 static skiagm::GM* G100(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, false); }
135 static skiagm::GM* G200(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, false); }
136 static skiagm::GM* G010(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, false); }
137 static skiagm::GM* G110(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, false); }
138 static skiagm::GM* G210(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, false); }
140 static skiagm::GM* G001(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, true); }
141 static skiagm::GM* G101(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, true); }
142 static skiagm::GM* G201(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, true); }
143 static skiagm::GM* G011(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, true); }
144 static skiagm::GM* G111(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, true); }
145 static skiagm::GM* G211(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, true); }
147 static skiagm::GMRegistry reg000(G000);
148 static skiagm::GMRegistry reg100(G100);
149 static skiagm::GMRegistry reg200(G200);
150 static skiagm::GMRegistry reg010(G010);
151 static skiagm::GMRegistry reg110(G110);
152 static skiagm::GMRegistry reg210(G210);
154 static skiagm::GMRegistry reg001(G001);
155 static skiagm::GMRegistry reg101(G101);
156 static skiagm::GMRegistry reg201(G201);
157 static skiagm::GMRegistry reg011(G011);
158 static skiagm::GMRegistry reg111(G111);
159 static skiagm::GMRegistry reg211(G211);