EB
Size: a a a
EB
EB
I
I
VS
MG
pixels[0] = 0;
failed, void and int are not compatibleI
I
pixels[0] = 0;
failed, void and int are not compatibleEB
EB
uint16_t* line = (uint16_t*)pixels;
MG
static void fill_plasma( AndroidBitmapInfo* info, void* pixels, double t )
{
int yy;
for (yy = 0; yy < info->height; yy++) {
uint16_t* line = (uint16_t*)pixels;
uint16_t* line_end = line + info->width;
if (line < line_end) {
line[0] = 0;
line++;
}
// go to next line
pixels = (char*)pixels + info->stride;
}
}
MG
I
I
MG
I
I
I
I