In skia, we can use SkPicture to record draw commands and then playback it, it works well. I am wondering if there is some ways to generate a skp file from the SkPicture, so that I can use debugger.skia.org to analyze the draw commands.
I know , it's easy to capture the skp file from Chrome web page or android package. For my own rendering engine , if it's possible to get the skp file from SkPicture?
Thanks.