如何使用 Android 处理来提高性能?

发布于 2024-09-27 06:15:14 字数 268 浏览 5 评论 0原文

我已将一些处理草图转换为 Android 应用程序,但它们在模拟器和 我的设备

关于如何提高作为 Android 应用程序运行的草图的速度和性能,有什么建议吗?我应该避免处理 API 中的某些内容或部分吗?

I have converted a few of my Processing sketches into Android apps, but they seem to run really slowly in the emulator and on my device.

Are there any tips on how to increase the speed and performance of my sketch running as an Android app? Are there things or parts of the Processing API I should avoid?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

就像说晚安 2024-10-04 06:15:14

面对所有答案...他们的答案是为需要优化 CPU 的每一% 的程序员提供的。但我和你有同样的问题,草图中并没有太多内容,但它仍然很慢。我怀疑 BlackDragon 甚至不知道“处理”是什么

我的答案:
尝试使用不同的渲染器,
例如 P2D。

您可以通过将其放在草图尺寸定义旁边来使用它:

size(Width,Heigth,P2D);

或者如果您不想使用该功能,您可以通过放置此方法来覆盖 sketchRenderer。

String sketchRenderer(){
   return P2D;
}

Facepalm to all answers...Their answers are for programmers that need every single % of the CPU optimized. But I have the same issue as you, not really having much going on in the sketch, but it's still slow. And I doubt BlackDragon even knows what Processing is

My answer:
Try using a different renderer,
P2D for example.

You can use it by putting it next to the sketch size definition:

size(Width,Heigth,P2D);

Or if you don't want to use that function, you can override the sketchRenderer by placing this method.

String sketchRenderer(){
   return P2D;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文