如何在 Windows Phone 中启用硬件加速

本文关键字:启用 硬件加速 Phone Windows | 更新日期: 2023-09-27 18:31:17

我创建了一个应用程序,就像你在安卓设备上找到的 Flow Connect,但在绘制线条时似乎有点慢,所以我想启用 GPU 或启用硬件加速,以便应用程序在 Windows Phone 中快速执行,硬件加速应该在哪里完成,在 XAML 文件或其他地方。

如何在 Windows Phone 中启用硬件加速

这是代码

试试看

    1. Enable composition caching at the plug-in level by setting the EnableGPUAcceleration parameter to “true”.
<param name="EnableGPUAcceleration" value="true" />
2. You can now enable GPU acceleration on the element(s) you wish to cache by specifying a CacheMode value of BitmapCache on the object or container of objects.
<StackPanel   CacheMode="BitmapCache" … />

这里有一个关于Windows Phone和silverlight中GPU加速的博客

硬件加速Windows Phone和Silverlight