Home
last modified time | relevance | path

Searched refs:PictureRecorder (Results 1 – 25 of 41) sorted by relevance

12

/third_party/flutter/engine/flutter/lib/ui/painting/
Dpicture_recorder.cc12 IMPLEMENT_WRAPPERTYPEINFO(ui, PictureRecorder);
15 V(PictureRecorder, isRecording) \
16 V(PictureRecorder, endRecording)
20 void PictureRecorder::RegisterNatives(tonic::DartLibraryNatives* natives) { in FOR_EACH_BINDING()
23 fml::RefPtr<PictureRecorder> PictureRecorder::Create() { in Create()
24 return fml::MakeRefCounted<PictureRecorder>(); in Create()
27 PictureRecorder::PictureRecorder() {} in PictureRecorder() function in flutter::PictureRecorder
29 PictureRecorder::~PictureRecorder() {} in ~PictureRecorder()
31 bool PictureRecorder::isRecording() { in isRecording()
35 SkCanvas* PictureRecorder::BeginRecording(SkRect bounds) { in BeginRecording()
[all …]
Dpicture_recorder.h19 class PictureRecorder : public RefCountedDartWrappable<PictureRecorder> {
21 FML_FRIEND_MAKE_REF_COUNTED(PictureRecorder);
24 static fml::RefPtr<PictureRecorder> Create();
26 ~PictureRecorder() override;
37 PictureRecorder();
Dcanvas.h30 static fml::RefPtr<Canvas> Create(PictureRecorder* recorder,
Dcanvas.cc67 fml::RefPtr<Canvas> Canvas::Create(PictureRecorder* recorder, in Create()
/third_party/flutter/engine/flutter/testing/dart/
Dcanvas_test.dart17 callback(Canvas(PictureRecorder(), const Rect.fromLTRB(0.0, 0.0, 0.0, 0.0)));
31 final PictureRecorder recorder = PictureRecorder();
39 try { Canvas(PictureRecorder(), null); } catch (error) { } // ignore: empty_catches
40 try { Canvas(PictureRecorder(), rect); } catch (error) { } // ignore: empty_catches
43 PictureRecorder()
136 final PictureRecorder recorder = PictureRecorder();
Dcolor_filter_test.dart33 final PictureRecorder recorder = PictureRecorder();
Dencoding_test.dart72 final PictureRecorder recorder = PictureRecorder();
/third_party/flutter/flutter/examples/layers/raw/
Dshader_warm_up.dart14 final ui.PictureRecorder recorder = ui.PictureRecorder();
Dcanvas.dart13 // First we create a PictureRecorder to record the commands we're going to
14 // feed in the canvas. The PictureRecorder will eventually produce a Picture,
16 final ui.PictureRecorder recorder = ui.PictureRecorder();
Dtouch_input.dart14 // First we create a PictureRecorder to record the commands we're going to
15 // feed in the canvas. The PictureRecorder will eventually produce a Picture,
17 final ui.PictureRecorder recorder = ui.PictureRecorder();
Dhello_world.dart22 final ui.PictureRecorder recorder = ui.PictureRecorder();
Dspinning_square.dart23 final ui.PictureRecorder recorder = ui.PictureRecorder();
Dtext.dart15 final ui.PictureRecorder recorder = ui.PictureRecorder();
/third_party/flutter/engine/flutter/shell/platform/embedder/fixtures/
Dmain.dart185 PictureRecorder baseRecorder = PictureRecorder();
210 PictureRecorder baseRecorder = PictureRecorder();
/third_party/flutter/flutter/packages/flutter_test/test/
Dreference_image_test.dart14 final ui.PictureRecorder recorder = ui.PictureRecorder();
/third_party/flutter/engine/flutter/testing/scenario_app/lib/src/
Danimated_color_square.dart38 final PictureRecorder recorder = PictureRecorder();
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/compositor/
Dpicture_recorder.dart7 class SkPictureRecorder implements ui.PictureRecorder {
/third_party/flutter/engine/flutter/lib/ui/
Ddart_ui.cc88 PictureRecorder::RegisterNatives(g_natives); in InitForGlobal()
/third_party/flutter/engine/flutter/lib/web_ui/test/
Dcompositing_test.dart236 final PictureRecorder recorder = PictureRecorder();
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dshader_warm_up.dart82 final ui.PictureRecorder recorder = ui.PictureRecorder();
Dbasic_types.dart57 // - Picture, PictureRecorder, Scene, SceneBuilder:
/third_party/skia/modules/canvaskit/npm_build/types/
Dindex.d.ts404 readonly PictureRecorder: DefaultConstructor<PictureRecorder>; property
2517 export interface PictureRecorder extends EmbindObject<PictureRecorder> { interface
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/ui/
Dcanvas.dart84 /// To end recording, use the [PictureRecorder.endRecording] method.
85 class PictureRecorder {
86 /// Creates a new idle PictureRecorder. To associate it with a
87 /// [Canvas] and begin recording, pass this [PictureRecorder] to the
89 factory PictureRecorder() {
93 return PictureRecorder._();
97 PictureRecorder._();
116 /// [PictureRecorder] has not yet been associated with a [Canvas],
126 /// Returns null if the PictureRecorder is not associated with a canvas.
168 /// To end the recording, call [PictureRecorder.endRecording] on the
[all …]
/third_party/flutter/flutter/packages/flutter/test/rendering/
Dlayers_test.dart230 final PictureRecorder recorder = PictureRecorder();
/third_party/skia/modules/canvaskit/
Dexterns.js636 PictureRecorder: { property

12