Lines Matching refs:skiagm
21 class GiantBitmapGM : public skiagm::GM {
127 static skiagm::GM* G000(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, false);… in G000()
128 static skiagm::GM* G100(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, false)… in G100()
129 static skiagm::GM* G200(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, false)… in G200()
130 static skiagm::GM* G010(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, false); } in G010()
131 static skiagm::GM* G110(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, false);… in G110()
132 static skiagm::GM* G210(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, false);… in G210()
134 static skiagm::GM* G001(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, true); } in G001()
135 static skiagm::GM* G101(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, true);… in G101()
136 static skiagm::GM* G201(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, true);… in G201()
137 static skiagm::GM* G011(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, true); } in G011()
138 static skiagm::GM* G111(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, true); } in G111()
139 static skiagm::GM* G211(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, true); } in G211()
141 static skiagm::GMRegistry reg000(G000);
142 static skiagm::GMRegistry reg100(G100);
143 static skiagm::GMRegistry reg200(G200);
144 static skiagm::GMRegistry reg010(G010);
145 static skiagm::GMRegistry reg110(G110);
146 static skiagm::GMRegistry reg210(G210);
148 static skiagm::GMRegistry reg001(G001);
149 static skiagm::GMRegistry reg101(G101);
150 static skiagm::GMRegistry reg201(G201);
151 static skiagm::GMRegistry reg011(G011);
152 static skiagm::GMRegistry reg111(G111);
153 static skiagm::GMRegistry reg211(G211);