Searched refs:recorder (Results 1 - 25 of 134) sorted by last modified time

123456

/external/skia/samplecode/
H A DSampleAll.cpp309 SkPictureRecorder recorder; local
311 SkCanvas* record = recorder.beginRecording(320, 480, NULL, 0);
314 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
H A DSampleFilterFuzz.cpp379 SkPictureRecorder recorder; local
380 SkCanvas* recordingCanvas = recorder.beginRecording(kBitmapSize, kBitmapSize, &factory, 0);
382 SkAutoTUnref<SkPicture> pict(recorder.endRecording());
H A DSamplePictFile.cpp129 SkPictureRecorder recorder; local
130 SkCanvas* can = recorder.beginRecording(bm.width(), bm.height(), NULL, 0);
132 pic.reset(recorder.endRecording());
147 SkPictureRecorder recorder; local
148 pic->draw(recorder.beginRecording(pic->width(), pic->height(), NULL, 0));
149 SkAutoTUnref<SkPicture> p2(recorder.endRecording());
186 SkPictureRecorder recorder; local
187 pic->draw(recorder.beginRecording(pic->width(), pic->height(), factory.get(), 0));
188 return recorder.endRecording();
H A DSamplePicture.cpp66 SkPictureRecorder recorder; local
68 recorder.beginRecording(100, 100, NULL, 0);
69 fSubPicture = recorder.endRecording();
71 SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
86 fPicture = recorder.endRecording();
136 SkPictureRecorder recorder; local
137 this->drawSomething(recorder.beginRecording(100, 100, NULL, 0));
138 SkAutoTUnref<SkPicture> pict(recorder.endRecording());
H A DSampleTiling.cpp99 SkPictureRecorder recorder; local
102 textCanvas = recorder.beginRecording(1000, 1000, NULL, 0);
157 fTextPicture.reset(recorder.endRecording());
/external/skia/tests/
H A DCanvasTest.cpp499 SkPictureRecorder recorder; local
500 SkCanvas* testCanvas = recorder.beginRecording(kWidth, kHeight, NULL, 0);
504 SkAutoTUnref<SkPicture> testPicture(recorder.endRecording());
H A DImageFilterTest.cpp340 SkPictureRecorder recorder; local
341 SkCanvas* recordingCanvas = recorder.beginRecording(64, 64, &factory, 0);
346 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
504 SkPictureRecorder recorder; local
505 SkCanvas* recordingCanvas = recorder.beginRecording(100, 100, &factory, 0);
519 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
527 SkPictureRecorder recorder; local
528 SkCanvas* recordingCanvas = recorder.beginRecording(1, 1, &factory, 0);
534 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
595 SkPictureRecorder recorder; local
[all...]
H A DPictureStateTreeTest.cpp15 SkPictureRecorder recorder; local
16 SkCanvas* canvas = recorder.beginRecording(200, 200, bbhFactory, 0);
64 return recorder.endRecording();
H A DPictureTest.cpp317 SkPictureRecorder recorder; local
318 SkCanvas* canvas = recorder.beginRecording(1000, 1000);
329 return recorder.endRecording();
672 SkPictureRecorder recorder; local
674 recorder.beginRecording(0, 0);
676 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
678 recorder.beginRecording(0, 0);
683 SkPictureRecorder recorder; local
684 recorder.beginRecording(0, 0);
685 SkAutoTUnref<SkPicture> picture(recorder
714 SkPictureRecorder recorder; local
812 SkPictureRecorder recorder; local
978 Copy(SkPictureRecorder* recorder) argument
1032 SkPictureRecorder recorder; local
1055 SkPictureRecorder recorder; local
1085 SkPictureRecorder recorder; local
1112 SkPictureRecorder recorder; local
1167 SkPictureRecorder recorder; local
1205 SkPictureRecorder recorder; local
1220 SkPictureRecorder recorder; local
1286 SkPictureRecorder recorder; local
1302 SkPictureRecorder recorder; local
1317 SkPictureRecorder recorder; local
1327 SkPictureRecorder recorder; local
1337 SkPictureRecorder recorder; local
1362 SkPictureRecorder recorder; local
1478 SkPictureRecorder recorder; local
1501 SkPictureRecorder recorder; local
1546 SkPictureRecorder recorder; local
1634 SkPictureRecorder recorder; local
[all...]
H A DRecordDrawTest.cpp32 SkRecorder recorder(clipped, W, H);
33 recorder.clipRect(clip);
34 SkRecordDraw(record, &recorder);
39 SkRecorder recorder(&record, W, H);
41 draw_pos_text_h(&recorder, "This will draw.", 20);
42 draw_pos_text_h(&recorder, "This won't.", 5000);
56 SkRecorder recorder(&record, W, H);
58 recorder.pushCull(SkRect::MakeWH(100, 100));
59 recorder.drawRect(SkRect::MakeWH(10, 10), SkPaint());
60 recorder
[all...]
H A DRecordOptsTest.cpp21 SkRecorder recorder(&record, W, H);
23 recorder.drawRect(SkRect::MakeWH(1000, 10000), SkPaint());
25 recorder.pushCull(SkRect::MakeWH(100, 100));
26 recorder.drawRect(SkRect::MakeWH(10, 10), SkPaint());
27 recorder.drawRect(SkRect::MakeWH(30, 30), SkPaint());
28 recorder.pushCull(SkRect::MakeWH(5, 5));
29 recorder.drawRect(SkRect::MakeWH(1, 1), SkPaint());
30 recorder.popCull();
31 recorder.popCull();
41 SkRecorder recorder(
[all...]
H A DRecordPatternTest.cpp20 SkRecorder recorder(&record, 1920, 1200);
23 recorder.save();
26 recorder.clipRect(SkRect::MakeWH(300, 200));
29 recorder.restore();
40 SkRecorder recorder(&record, 1920, 1200);
44 recorder.save();
45 recorder.clipRect(SkRect::MakeWH(300, 200));
46 recorder.restore();
63 SkRecorder recorder(&record, 1920, 1200);
65 recorder
[all...]
H A DRecorderTest.cpp43 SkRecorder recorder(&record, 1920, 1080);
45 recorder.drawRect(SkRect::MakeWH(10, 10), SkPaint());
65 SkRecorder recorder(&record, 1920, 1080);
66 recorder.saveLayer(&bounds, &paint);
H A DSerializationTest.cpp407 SkPictureRecorder recorder; local
408 bool didDraw = drawSomething(recorder.beginRecording(kBitmapSize, kBitmapSize, NULL, 0));
410 SkAutoTUnref<SkPicture> pict(recorder.endRecording());
H A DTileGridTest.cpp64 SkPictureRecorder recorder; local
65 SkCanvas* canvas = recorder.beginRecording(20, 20, &factory, 0);
69 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
153 SkPictureRecorder recorder; local
154 SkCanvas* canvas = recorder.beginRecording(20, 20, &factory, 0);
159 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
/external/skia/tools/
H A DPictureRenderer.cpp215 SkPictureRecorder recorder; local
216 SkCanvas* canvas = recorder.beginRecording(fPicture->width(), fPicture->height(),
220 fPicture.reset(recorder.endRecording());
354 SkPictureRecorder recorder; local
355 SkCanvas* canvas = recorder.beginRecording(this->getViewWidth(), this->getViewHeight(),
360 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
H A Dbench_playback.cpp47 SkPictureRecorder recorder; local
48 src.draw(recorder.beginRecording(src.width(), src.height(), &factory));
49 return recorder.endRecording();
H A Dbench_record.cpp65 SkPictureRecorder recorder; local
67 src.draw(recorder.EXPERIMENTAL_beginRecording(src.width(), src.height(), bbhFactory));
69 src.draw(recorder.beginRecording(src.width(), src.height(), bbhFactory));
71 SkAutoTUnref<SkPicture> pic(recorder.endRecording());
H A Dfiltermain.cpp720 SkPictureRecorder recorder; local
721 SkCanvas* canvas = recorder.beginRecording(inPicture->width(), inPicture->height(), NULL, 0);
723 SkAutoTUnref<SkPicture> outPicture(recorder.endRecording());
H A Dgpuveto.cpp57 SkPictureRecorder recorder; local
58 picture->draw(recorder.beginRecording(picture->width(), picture->height(), NULL, 0));
59 SkAutoTUnref<SkPicture> recorded(recorder.endRecording());
H A Drender_pictures_main.cpp184 SkPictureRecorder recorder; local
185 picture->draw(recorder.beginRecording(picture->width(), picture->height(), NULL, 0));
186 SkAutoTUnref<SkPicture> other(recorder.endRecording());
H A Dskpmaker.cpp30 SkPictureRecorder recorder; local
31 SkCanvas* canvas = recorder.beginRecording(width, height, NULL, 0);
40 SkAutoTUnref<SkPicture> pict(recorder.endRecording());
/external/skia/bench/
H A DPicturePlaybackBench.cpp41 SkPictureRecorder recorder; local
42 SkCanvas* pCanvas = recorder.beginRecording(PICTURE_WIDTH, PICTURE_HEIGHT, NULL, 0);
44 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
H A DPictureRecordBench.cpp55 SkPictureRecorder recorder; variable
62 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
63 canvas = recorder.beginRecording(PICTURE_WIDTH, PICTURE_HEIGHT, NULL, 0);
124 SkPictureRecorder recorder; variable
128 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
129 canvas = recorder.beginRecording(PICTURE_WIDTH, PICTURE_HEIGHT, NULL, 0);
162 SkPictureRecorder recorder; variable
163 SkCanvas* canvas = recorder.beginRecording(PICTURE_WIDTH, PICTURE_HEIGHT, NULL, 0);
/external/skia/debugger/
H A DSkDebugger.cpp45 SkPictureRecorder recorder; local
46 SkCanvas* canvas = recorder.beginRecording(fPictureWidth, fPictureHeight, NULL, 0);
69 return recorder.endRecording();

Completed in 369 milliseconds

123456