'rsSendToClient'失败,出现以下错误:
02-15 04:50:23.102:E / RenderScript(5147):无法打开共享库(/data/data/com.isssist.magnitab//lib/librs.mono.so):无法加载库: reloc_library [1306]:1420无法找到'_Z14rsSendToClienti'...
02-15 04:50:23.102:E / RenderScript(5147):无法打开系统共享库(/system/lib/librs.mono.so):( null)android.support.v8.renderscript.RSRuntimeException:加载ScriptC脚本失败。
void filter() {
rsDebug("Number of rows:",rsAllocationGetDimX(gIn));
for (int i = 0; i < rsAllocationGetDimX(gIn); i += 16)
{
const int32_t *element = rsGetElementAt(gIn, i);
//rsDebug("Number of rows:",sizeOf(gIn));
//rsDebug("---------------:",(element[0]));
int lumOne = (element[0]);
lumOne += 128;
pixelData[lumOne]=pixelData[lumOne]+1;
// Bin Second Pixel Value
const int32_t *element2 = rsGetElementAt(gIn, i+2);
int lumTwo = (element2[0]);
lumTwo += 128;
//pixelData[lumTwo]++;
pixelData[lumTwo]=pixelData[lumTwo]+1;
}
rsSendToClient(1);
}
答案 0 :(得分:1)
这是一个已知的错误。 Getting "cannot locate symbol _Z17rsMatrixTranslateP12rs_matrix4x4fff" using the RenderScript Support Library?是首次报道的地方。我已经在AOSP中修复了它,但SDK尚未发布,但尚未发布。