I'm running into some trouble when I try to modify a bitmap in native C on Android using JNI. I've taken the bitmap-plasma as an example, however I can't get my implementation to work:
on the java side, the code is simple
// im copying some bitmap with ARGB_8888
bp = lbpa.get(framecounter).copy(Bitmap.Config.ARGB_8888, true);
//then call the native render function
render(bp, X , Y);
now on the native side I'm basically working with these two functions:
static uint32_t getPixel(AndroidBitmapInfo* info, void* pixels, int x , int y) {
//uint32_t* onePixel = (uint32_t*) pixels ;
uint32_t onePixel;
// we need to cast a different pointer than void
uint32_t* pixel32pointer = (uint32_t*) pixels ;
if (x < info->width && y < info->stride) {
onePixel = *(pixel32pointer + ( (int) info->stride * y ) + ( (int) info->width * x ) );
} else {
// only modify first pixel
//onePixel = (uint32_t*) pixels;
}
return onePixel;
}
static void setPixel(AndroidBitmapInfo* info, void* pixels, int x , int y, uint32_t color) {
// cast a different pointer to pixels than void
uint32_t* onePixel = (uint32_t*) pixels;
if (x < info->width && y < info->stride) {
*(onePixel + ( (int) info->stride * y ) + ( (int)info->width * x ) ) = color;
} else {
// dont do shit
}
}
the functions get called like this:
c = getPixelPointer(info, pixels, x0 + x, y0 + y);
setPixelPointer(info, pixels, x0 + rx, y0 + ry, c );
according to documentation ARGB_8888 the uint32_t should be appropriate, right?
typedef struct {
uint32_t width;
uint32_t height;
uint32_t stride;
int32_t format;
uint32_t flags; // 0 for now
} AndroidBitmapInfo;
stride provides (as far as I know) the number of bits per line.