HomeSort by relevance Sort by last modified time
    Searched refs:GM (Results 1 - 25 of 262) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/skia/samplecode/
GMSampleView.h 12 #include "gm.h"
17 typedef skiagm::GM GM;
20 GMSampleView(GM*);
33 GM* fGM;
  /external/skia/bench/
GMBench.h 12 #include "gm.h"
15 * Runs a GM as a benchmark by repeatedly drawing the GM.
19 // Constructor takes ownership of the GM param.
20 GMBench(skiagm::GM* gm);
30 skiagm::GM* fGM;
GMBench.cpp 10 GMBench::GMBench(skiagm::GM* gm) : fGM(gm) {
11 fName.printf("GM_%s", gm->getName());
25 fGM->setMode(skiagm::GM::kBench_Mode);
27 // Does the GM ever rely on drawBackground to lazily compute something?
  /external/skia/tools/viewer/
GMSlide.h 12 #include "gm.h"
16 GMSlide(skiagm::GM* gm);
27 skiagm::GM* fGM;
GMSlide.cpp 17 GMSlide::GMSlide(skiagm::GM* gm) : fGM(gm) {
18 fName.printf("GM_%s", gm->getName());
25 // Does the GM ever rely on drawBackground to lazily compute something?
  /external/skia/gm/
gm.cpp 8 #include "gm.h"
13 GM::GM() {
21 GM::~GM() {}
23 void GM::draw(SkCanvas* canvas) {
28 void GM::drawContent(SkCanvas* canvas) {
36 void GM::drawBackground(SkCanvas* canvas) {
44 const char* GM::getName() {
51 void GM::setBGColor(SkColor color)
    [all...]
copyTo4444.cpp 8 #include "gm.h"
20 class CopyTo4444GM : public GM {
48 typedef GM INHERITED;
53 static GM* MyFactory(void*) { return new CopyTo4444GM; }
tinybitmap.cpp 7 #include "gm.h"
23 class TinyBitmapGM : public GM {
46 typedef GM INHERITED;
51 static GM* MyFactory(void*) { return new TinyBitmapGM; }
gradtext.cpp 8 #include "gm.h"
39 class ChromeGradTextGM1 : public GM {
63 typedef GM INHERITED;
68 class ChromeGradTextGM2 : public GM {
93 typedef GM INHERITED;
98 class GradTextGM : public GM {
154 typedef GM INHERITED;
159 static GM* MyFactory(void*) { return new GradTextGM; }
160 static GM* CMyFactory(void*) { return new ChromeGradTextGM1; }
161 static GM* CMyFactory2(void*) { return new ChromeGradTextGM2;
    [all...]
gm.h 23 static skiagm::GM* SK_MACRO_APPEND_LINE(F_)(void*) { code; } \
26 // a Simple GM is a rendering test that does not store state between
45 class GM {
47 GM();
48 virtual ~GM();
89 // GM's getISize bounds.
109 /** draws a standard message that the GM is only intended to be used with the GPU.*/
132 typedef sk_tools::Registry<GM*(*)(void*)> GMRegistry;
134 class SimpleGM : public skiagm::GM {
arcofzorro.cpp 8 #include "gm.h"
14 // This GM draws a lot of arcs in a 'Z' shape. It particularly exercises
17 class ArcOfZorroGM : public GM {
78 typedef GM INHERITED;
bigtext.cpp 8 #include "gm.h"
18 class BigTextGM : public skiagm::GM {
53 typedef skiagm::GM INHERITED;
colorfilteralpha8.cpp 8 #include "gm.h"
12 class ColorFilterAlpha8 : public skiagm::GM {
46 typedef skiagm::GM INHERITED;
drawfilter.cpp 8 #include "gm.h"
35 class DrawFilterGM : public skiagm::GM {
67 typedef GM INHERITED;
drawregion.cpp 8 #include "gm.h"
15 class DrawRegionGM : public skiagm::GM {
55 typedef skiagm::GM INHERITED;
encode.cpp 7 #include "gm.h"
17 class EncodeGM : public GM {
46 typedef GM INHERITED;
xform_image_gen.cpp 8 #include "gm.h"
11 class ColorXformImageGenGM : public skiagm::GM {
45 typedef GM INHERITED;
manypaths.cpp 8 #include "gm.h"
25 class ManyCirclesGM : public GM {
26 // This GM attempts to flood Ganesh with more circles than will fit in a single index buffer
61 typedef GM INHERITED;
66 class ManyRRectsGM : public GM {
67 // This GM attempts to flood Ganesh with more rrects than will fit in a single index buffer
114 typedef GM INHERITED;
distantclip.cpp 9 #include "gm.h"
17 class DistantClipGM : public GM {
65 typedef GM INHERITED;
70 static GM* MyFactory(void*) { return new DistantClipGM; }
fontscaler.cpp 7 #include "gm.h"
13 class FontScalerGM : public GM {
75 typedef GM INHERITED;
80 static GM* MyFactory(void*) { return new FontScalerGM; }
internal_links.cpp 7 #include "gm.h"
20 class InternalLinksGM : public GM {
70 typedef GM INHERITED;
75 static GM* MyFactory(void*) { return new InternalLinksGM; }
pathopsskpclip.cpp 8 #include "gm.h"
20 class PathOpsSkpClipGM : public GM {
64 typedef GM INHERITED;
69 static GM* MyFactory(void*) { return new PathOpsSkpClipGM; }
points.cpp 7 #include "gm.h"
12 class PointsGM : public GM {
65 typedef GM INHERITED;
70 static GM* MyFactory(void*) { return new PointsGM; }
textblobuseaftergpufree.cpp 8 #include "gm.h"
20 class TextBlobUseAfterGpuFree : public GM {
34 // This GM exists to test a specific feature of the GPU backend.
36 skiagm::GM::DrawGpuOnlyMessage(canvas);
69 typedef GM INHERITED;
aaa.cpp 8 #include "gm.h"
15 class AnalyticAntiAliasConvexGM : public skiagm::GM {
81 typedef skiagm::GM INHERITED;
84 class AnalyticAntiAliasGeneralGM : public skiagm::GM {
129 typedef skiagm::GM INHERITED;
132 class AnalyticAntiAliasInverseGM : public skiagm::GM {
161 typedef skiagm::GM INHERITED;

Completed in 259 milliseconds

1 2 3 4 5 6 7 8 91011