我想在Android Studio中使用渲染脚本制作演示应用程序以进行照片处理。但是当我建立项目时,它给了我app:compileDebugRenderscript的错误
我的项目规格如下。
compileSdkVersion 19
buildToolsVersion '19.1.0'
minSdkVersion 16
targetSdkVersion 19
renderscriptTargetApi 18
renderscriptSupportModeEnabled true
这是我的渲染脚本的片段
uchar4_attribute_((kernel)) bar(uint32_t x,uint32_t y) {
uchar4 ret -((uchar)x,(uchar)y,(uchar)(x+y)(uchar)255)
return ret;
}
最佳答案
您可以显示foo.rs的任何部分吗?上面有一条错误消息,其中提到缺少声明说明符。您是否跳过了代码中的返回值?您能否仅使用一个几乎为空的源文件来尝试正确构建?