Android Render Script Error When Assigning To Out Paramaeter
i am getting error Fatal signal 11 (SIGSEGV) at 0x51b71000 (code=1), thread 3696 (sssist.magnitab) Whenever i assign value to out parameter for send back the values main app , w
Solution 1:
You should only be writing to out[0], and never to out[10]. The out pointer is advanced automatically and root() is run on each cell in your input/output allocations. Each individual cell has this function called with a valid in/out pointer pair that really maps to in[y][x], out[y][x] (or 1D as appropriate).
Post a Comment for "Android Render Script Error When Assigning To Out Paramaeter"