Searched refs:skiagm (Results 1 - 25 of 174) sorted by relevance

1234567

/external/skia/gm/
H A Dselftest.cpp17 class SelfTestGM : public skiagm::GM {
29 SkISize onISize() { return skiagm::make_isize(kWidth, kHeight); }
54 static skiagm::GM* F1(void*) {
57 static skiagm::GM* F2(void*) {
58 return new SelfTestGM("selftest2", kTranslucentBlue, skiagm::GM::kSkipPipe_Flag);
61 static skiagm::GMRegistry gR1(F1);
62 static skiagm::GMRegistry gR2(F2);
H A Dgiantbitmap.cpp21 class GiantBitmapGM : public skiagm::GM {
128 static skiagm::GM* G000(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, false); }
129 static skiagm::GM* G100(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, false); }
130 static skiagm::GM* G200(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, false, false); }
131 static skiagm::GM* G010(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, true, false); }
132 static skiagm::GM* G110(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, true, false); }
133 static skiagm::GM* G210(void*) { return new GiantBitmapGM(SkShader::kMirror_TileMode, true, false); }
135 static skiagm::GM* G001(void*) { return new GiantBitmapGM(SkShader::kClamp_TileMode, false, true); }
136 static skiagm::GM* G101(void*) { return new GiantBitmapGM(SkShader::kRepeat_TileMode, false, true); }
137 static skiagm
[all...]
H A Ddashcubics.cpp18 class DashCubicsGM : public skiagm::GM {
72 static skiagm::GM* MyFactory(void*) { return new DashCubicsGM; }
73 static skiagm::GMRegistry reg(MyFactory);
H A Dbitmaprect.cpp32 class DrawBitmapRect2 : public skiagm::GM {
87 typedef skiagm::GM INHERITED;
121 class DrawBitmapRect3 : public skiagm::GM {
150 typedef skiagm::GM INHERITED;
180 class DrawBitmapRect4 : public skiagm::GM {
230 typedef skiagm::GM INHERITED;
235 static skiagm::GM* MyFactory0(void*) { return new DrawBitmapRect2(false); }
236 static skiagm::GM* MyFactory1(void*) { return new DrawBitmapRect2(true); }
238 static skiagm::GM* MyFactory2(void*) { return new DrawBitmapRect3(); }
241 static skiagm
[all...]
H A Dbigtext.cpp17 class BigTextGM : public skiagm::GM {
50 typedef skiagm::GM INHERITED;
H A Dgetpostextpath.cpp14 class GetPosTextPathGM : public skiagm::GM {
23 SkISize onISize() { return skiagm::make_isize(480, 780); }
72 static skiagm::GM* F(void*) { return new GetPosTextPathGM; }
73 static skiagm::GMRegistry gR(F);
H A Ddashing.cpp35 class DashingGM : public skiagm::GM {
44 SkISize onISize() { return skiagm::make_isize(640, 300); }
117 class Dashing2GM : public skiagm::GM {
126 SkISize onISize() { return skiagm::make_isize(640, 480); }
175 class Dashing3GM : public skiagm::GM {
184 SkISize onISize() { return skiagm::make_isize(640, 480); }
304 static skiagm::GM* F0(void*) { return new DashingGM; }
305 static skiagm::GM* F1(void*) { return new Dashing2GM; }
306 static skiagm::GM* F2(void*) { return new Dashing3GM; }
308 static skiagm
[all...]
H A Dgm.h24 static skiagm::GM* SK_MACRO_APPEND_LINE(F_)(void*) { code; } \
25 static skiagm::GMRegistry SK_MACRO_APPEND_LINE(R_)(SK_MACRO_APPEND_LINE(F_));
27 namespace skiagm { namespace
H A Dhittestpath.cpp32 class HitTestPathGM : public skiagm::GM {
74 static skiagm::GM* MyFactory(void*) { return new HitTestPathGM; }
75 static skiagm::GMRegistry reg(MyFactory);
H A Dstrokes.cpp37 class StrokesGM : public skiagm::GM {
77 typedef skiagm::GM INHERITED;
80 class Strokes2GM : public skiagm::GM {
135 typedef skiagm::GM INHERITED;
146 class Strokes3GM : public skiagm::GM {
239 typedef skiagm::GM INHERITED;
244 static skiagm::GM* F0(void*) { return new StrokesGM; }
245 static skiagm::GM* F1(void*) { return new Strokes2GM; }
246 static skiagm::GM* F2(void*) { return new Strokes3GM; }
248 static skiagm
[all...]
H A DcopyTo4444.cpp13 namespace skiagm { namespace
H A Dverylargebitmap.cpp58 class VeryLargeBitmapGM : public skiagm::GM {
118 typedef skiagm::GM INHERITED;
125 static skiagm::GM* MyFactory(void*) { return new VeryLargeBitmapGM; }
126 static skiagm::GMRegistry reg(MyFactory);
/external/skia/dm/
H A DDMCpuTask.h24 skiagm::GMRegistry::Factory,
33 skiagm::GMRegistry::Factory fGMFactory;
34 SkAutoTDelete<skiagm::GM> fGM;
H A DDMReplayTask.h18 skiagm::GM*, // GM to run through a picture. Takes ownership.
29 SkAutoTDelete<skiagm::GM> fGM;
H A DDMSerializeTask.h18 skiagm::GM*,
28 SkAutoTDelete<skiagm::GM> fGM;
H A DDMUtil.h16 void RecordPicture(skiagm::GM* gm, SkPicture* picture, uint32_t recordFlags = 0);
19 void SetupBitmap(const SkBitmap::Config config, skiagm::GM* gm, SkBitmap* bitmap);
H A DDMExpectations.h29 const skiagm::Expectations expectations = fGMExpectations.get(filename.c_str());
36 const skiagm::GmResultDigest digest(bitmap);
41 skiagm::JsonExpectationsSource fGMExpectations;
H A DDMGpuTask.h24 skiagm::GMRegistry::Factory,
35 SkAutoTDelete<skiagm::GM> fGM;
H A DDMPipeTask.h18 skiagm::GM*, // GM to run through a pipe. Takes ownership.
31 SkAutoTDelete<skiagm::GM> fGM;
H A DDMTileGridTask.h18 skiagm::GM*, // GM to run through a picture. Takes ownership.
29 SkAutoTDelete<skiagm::GM> fGM;
H A DDMReplayTask.cpp14 skiagm::GM* gm,
39 if (fGM->getFlags() & skiagm::GM::kSkipPicture_Flag) {
H A DDMCpuTask.cpp16 skiagm::GMRegistry::Factory gmFactory,
51 if (SkBitmap::kRGB_565_Config == fConfig && (fGM->getFlags() & skiagm::GM::kSkip565_Flag)) {
54 if (fGM->getFlags() & skiagm::GM::kGPUOnly_Flag) {
H A DDMPipeTask.cpp37 skiagm::GM* gm,
74 if (fGM->getFlags() & skiagm::GM::kSkipPipe_Flag) {
78 fGM->getFlags() & skiagm::GM::kSkipPipeCrossProcess_Flag) {
H A DDMTileGridTask.cpp14 TileGridTask::TileGridTask(const Task& parent, skiagm::GM* gm, SkBitmap reference, SkISize tileSize)
71 if (fGM->getFlags() & skiagm::GM::kSkipPicture_Flag) {
74 if (fGM->getFlags() & skiagm::GM::kSkipTiled_Flag) {
H A DDMGpuTask.cpp16 skiagm::GMRegistry::Factory gmFactory,
68 return SkToBool(fGM->getFlags() & skiagm::GM::kSkipGPU_Flag);

Completed in 2069 milliseconds

1234567