SkPicture 有多强大?

发布于 2024-12-10 17:19:41 字数 367 浏览 0 评论 0 原文

在 Skia 中,如果我将某些内容记录到 SkPicture 中,是否保证保留所有必要的内存?即

picture_canvas = picture.beginRecording(width, height);
picture_canvas->drawBitmap(*some_bitmap, 0, 0);
delete some_bitmap;
picture.endRecording();
some_canvas.drawPicture(picture); // will this crash since I deleted some_bitmap?

是否有任何情况下我可以删除导致drawPicture()崩溃的东西,或者它总是保证工作?

In Skia, if I record something into an SkPicture, is all necessary memory guaranteed to be preserved? i.e.

picture_canvas = picture.beginRecording(width, height);
picture_canvas->drawBitmap(*some_bitmap, 0, 0);
delete some_bitmap;
picture.endRecording();
some_canvas.drawPicture(picture); // will this crash since I deleted some_bitmap?

Is there any scenario where I could delete something that causes drawPicture() to crash, or is it always guaranteed to work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文