Reputation: 324
I'm trying to use renderscript and it gives me the error that pragma name is not correct.I'm using pragma like this:
#pragma rs java_com.example.shahryar.ripplerenderscript
is it wrong?
Upvotes: 0
Views: 51
Reputation: 15775
The form should be:
#pragma rs java_package_name(java_com.example.shahryar.ripplerenderscript)
Upvotes: 2