• Home
Name Date Size #Lines LOC

..--

CaptureTimer.cppD03-May-20241.2 KiB4724

CaptureTimer.hD03-May-20241.1 KiB4316

CommonPool.cppD03-May-20242.7 KiB9868

CommonPool.hD03-May-20241.6 KiB7137

README.mdD03-May-2024771 1813

SkiaCapture.cppD03-May-20247.8 KiB208130

SkiaCapture.hD03-May-20243 KiB9544

SkiaMemoryReporter.cppD03-May-20248.1 KiB206149

SkiaMemoryReporter.hD03-May-20244.3 KiB10752

record.shD03-May-20242.2 KiB8552

README.md

1This library turns on recording of skia commands in SkiaGL version of the RE.
2The debug property defines number of milliseconds for the recording to take place.
3A non zero value turns on the recording. The recording will stop after MS specified.
4To reset the recording, set the capture_skia_ms flag to a new time. When recording
5is finished, the capture_skia_ms flag will be set to 0 to avoid circular recording.
6
7In order to allow the process to write files onto the device run:
8adb shell setenforce 0
9
10To start recording run:
11adb shell setprop debug.renderengine.capture_skia_ms 1000
12
13File will be stored in the /data/user/ directory on the device:
14adb shell ls -al /data/user/
15
16To retrieve the data from the device:
17adb pull /data/user/re_skiacapture_<timestamp>.mskp
18