我已经在rsDebug示例“喷泉”中插入了Android RenderScript方法,但没有收到来自logcat的消息。
这是一个代码 fragment ,以演示我已经尝试过的内容:
int root() {
float dt = min(rsGetDt(), 0.1f);
rsDebug("dt", dt);
...
}
最佳答案
我一直在使用here的renderscript示例CarouselView示例,这是我使rsDebug工作的方法:
<application android:debuggable="true">
\#include "rs_debug.rsh"
到carousel.rs renderscript文件。
关于android - rsDebug为什么不起作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11237290/